1
This commit is contained in:
@@ -2,12 +2,12 @@ using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class PrefabPoint : ModulePrefab<DataPoint> {
|
||||
private DataPoint point;
|
||||
public class PrefabPoint : ModulePrefab<DataPlatePoint> {
|
||||
private DataPlatePoint point;
|
||||
|
||||
public override DataPoint Value => point;
|
||||
public override DataPlatePoint Value => point;
|
||||
|
||||
public override void UpdateVisual(DataPoint point) {
|
||||
public override void UpdateVisual(DataPlatePoint point) {
|
||||
this.point = point;
|
||||
transform.localPosition = point.position;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user