14 lines
295 B
C#
14 lines
295 B
C#
using UnityEngine;
|
|
|
|
namespace InterfaceOff.WorldScene
|
|
{
|
|
public class PlayerController : MonoBehaviour
|
|
{
|
|
private static PlayerController Instance;
|
|
|
|
public static void SetPos(Vector3 pos)
|
|
{
|
|
Instance.transform.position = pos;
|
|
}
|
|
}
|
|
} |