feat(): 大量更新

This commit is contained in:
2025-10-15 21:31:13 +08:00
parent 546f08c53a
commit 668bfe12eb
178 changed files with 11318 additions and 446 deletions

View File

@@ -0,0 +1,10 @@
using UnityEngine;
using Share;
namespace Map
{
public class FlightTrigger : MonoBehaviour
{
[SerializeField] public ICharacter Player;
[SerializeField] public ICharacter Enemy;
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 5e697dc78ed84a3ab2e921a57c17be95
timeCreated: 1760495479

View File

@@ -0,0 +1,20 @@
using UnityEngine;
using System;
namespace Map
{
public class MapFlag : MonoBehaviour
{
public string FlagName;
public Vector3 Position;
public MapFlag ParentFlag;
public MapFlag LeftFlag;
public MapFlag RightFlag;
public event Action<MapFlag> OnPlayerEnter;
private void OnTriggerEnter(Collider other)
{
OnPlayerEnter?.Invoke(this);
}
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 2c3ea88c92cc4d0bb6098983903be7fb
timeCreated: 1760444130

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Core;
using UnityEngine;
namespace Map
{
public class MapFlagManager : MonoSingleton<MapFlagManager>
{
public MapFlag StartFlag;
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: f13be1e244e84e3b93b0b3a4c054cb46
timeCreated: 1760424376