浮标点和相机停靠点外置,用resources加载图片,删除脚本文件夹分类

This commit is contained in:
XuGaoFeng
2026-07-11 10:42:30 +08:00
parent 9c68a64c5b
commit 2732326b32
63 changed files with 1878 additions and 513 deletions

View File

@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Rendering;
public class SkipUnitySplash : MonoBehaviour
{
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSplashScreen)]
static void OnBeforeSplash()
{
// 打包后运行时,直接停掉启动画面
SplashScreen.Stop(SplashScreen.StopBehavior.StopImmediate);
}
}