20 lines
401 B
C#
20 lines
401 B
C#
![]() |
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;
|
||
|
}
|
||
|
}
|
||
|
|