Files
wyatt 648386cd73 Lua向C#逻辑迁移 一期 #13
将整个插件代码上传
2025-10-26 21:48:39 +08:00

21 lines
384 B
C#

namespace UnrealSharpWeaver;
public enum LifetimeCondition
{
None = 0,
InitialOnly = 1,
OwnerOnly = 2,
SkipOwner = 3,
SimulatedOnly = 4,
AutonomousOnly = 5,
SimulatedOrPhysics = 6,
InitialOrOwner = 7,
Custom = 8,
ReplayOrOwner = 9,
ReplayOnly = 10,
SimulatedOnlyNoReplay = 11,
SimulatedOrPhysicsNoReplay = 12,
SkipReplay = 13,
Dynamic = 14,
Never = 15,
};