This commit is contained in:
CortexCore
2025-08-03 02:28:22 +08:00
parent 87007c9c24
commit 519c93d651
26 changed files with 427 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
using UnityEngine;
namespace Net.Project.B.WorldNode
{
[Serializable]
public class UnityPhysicsNode:IWorldNode
{
public bool activeOnImpact;
public bool activeOnStartProbability;
public bool activeOnDamage;
public Action<Vector3,Vector3> Fracture;
}
}