This commit is contained in:
2025-10-31 15:31:34 +08:00
parent cf47a388ca
commit ad94eae693
316 changed files with 40772 additions and 89 deletions

View File

@@ -0,0 +1,24 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.AddressableAssets;
using UnityEngine.ResourceManagement.AsyncOperations;
public class GameStart : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("Game Start");
Addressables.LoadSceneAsync("Assets/GameRes/Scene/Test.unity").Completed+=(handle)=>
{
Debug.Log("Load Scene\"Test\"");
};
}
// Update is called once per frame
void Update()
{
}
}