using System.Collections; using System.Collections.Generic; using UnityEngine; using ZXKFramework; public class TargetToScreenAni : MonoBehaviour { MoveObjManager move = new MoveObjManager(); void Start() { move.Init(transform, 1f, false); move.Move(true); } }