public bool IsOverlappingComponent(PrimitiveComponent other)
 {
     return(_IsOverlappingComponent(NativeHandler, other.NativeHandler));
 }
 public void IgnoreComponentWhenMoving(PrimitiveComponent component, bool shouldIgnore)
 {
     _IgnoreComponentWhenMoving(NativeHandler, component.NativeHandler, shouldIgnore);
 }
Example #3
0
 public virtual void OnComponentSleep(PrimitiveComponent self, string bone_name)
 {
 }
Example #4
0
 public virtual void OnComponentEndOverlap(PrimitiveComponent self, PrimitiveComponent comp)
 {
 }
Example #5
0
 public virtual void OnComponentBeginOverlap(PrimitiveComponent self, PrimitiveComponent comp, Vector impact)
 {
 }
Example #6
0
 public virtual void OnComponentHit(PrimitiveComponent self, PrimitiveComponent comp, Vector impact)
 {
 }