14 lines
306 B
C#
14 lines
306 B
C#
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);
|
|
}
|
|
}
|