目录调整,旧钓鱼逻辑全部注释

This commit is contained in:
2025-08-22 00:09:05 +08:00
parent 2f8251fe63
commit 6767dc7019
154 changed files with 937 additions and 483 deletions

View File

@@ -0,0 +1,50 @@
namespace NBF
{
public abstract class PlayerDriveBase
{
protected PlayerCharacter Character;
protected FPlayer Player;
public void Start(PlayerCharacter character)
{
Player = character.gameObject.GetComponent<FPlayer>();
Character = character;
OnStart();
}
public void Update()
{
OnUpdate();
}
public void LateUpdate()
{
OnLateUpdate();
}
public void FixedUpdate()
{
OnFixedUpdate();
}
public virtual void OnDestroy()
{
}
protected virtual void OnStart()
{
}
protected virtual void OnUpdate()
{
}
protected virtual void OnLateUpdate()
{
}
protected virtual void OnFixedUpdate()
{
}
}
}