28 lines
481 B
C#
28 lines
481 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json.Bson;
|
|
using UnityEngine;
|
|
|
|
public class PlayerInit : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
public GameObject playerpre;
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
void SetPlayer()
|
|
{
|
|
GameObject player = Instantiate(playerpre);
|
|
//player.transform.position = ;
|
|
|
|
}
|
|
}
|