123456789101112131415161718192021 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class RtkManage : MonoBehaviour
- {
- private SvrPlugin svrPlugin;
- private Vector3 oldPos;
- private void Start()
- {
- svrPlugin = SvrPlugin.Instance;
- }
- private void Update()
- {
- if(oldPos != transform.position)
- {
- // svrPlugin.
- }
- }
- }
|