27 lines
449 B
C#
27 lines
449 B
C#
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
|
||
public class mode_change : MonoBehaviour
|
||
{
|
||
public bool <EFBFBD><EFBFBD>ϰģʽ = true;
|
||
// Start is called before the first frame update
|
||
void Start()
|
||
{
|
||
DontDestroyOnLoad(gameObject);
|
||
}
|
||
|
||
// Update is called once per frame
|
||
void Update()
|
||
{
|
||
|
||
}
|
||
public void modechange(bool change) {
|
||
|
||
<EFBFBD><EFBFBD>ϰģʽ = change;
|
||
|
||
|
||
|
||
}
|
||
}
|