You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
874 B
36 lines
874 B
1 year ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class MeshEditorPoint : MonoBehaviour
|
||
|
{
|
||
|
|
||
|
//顶点id,(顶点初始位置转字符串)
|
||
|
[HideInInspector] public string pointid;
|
||
|
|
||
|
//记录坐标点上一次移动的位置,用于判断控制点是否移动
|
||
|
[HideInInspector] private Vector3 lastPosition;
|
||
|
|
||
|
|
||
|
public delegate void MoveDelegate(string pid, Vector3 pos);
|
||
|
|
||
|
//控制点移动时的回调
|
||
|
public MoveDelegate onMove = null;
|
||
|
|
||
|
// Use this for initialization
|
||
|
void Start()
|
||
|
{
|
||
|
lastPosition = transform.position;
|
||
|
}
|
||
|
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
if (transform.position != lastPosition)
|
||
|
{
|
||
|
if (onMove != null) onMove(pointid, transform.localPosition);
|
||
|
lastPosition = transform.position;
|
||
|
}
|
||
|
}
|
||
|
}
|