Exemple #1
0
        public override void AddPhysicsActorTaint(PhysicsActor prim, TaintType taint)
        {
            TaintHandler handler;

            if (_taintHandlers.TryGetValue(taint, out handler))
            {
                handler((PhysxPrim)prim, taint);
            }
        }
Exemple #2
0
 private void HandlePrimChangedShape(PhysxPrim prim, TaintType taint)
 {
     this.QueueCommand(new Commands.ChangedShapeCmd(prim));
 }
Exemple #3
0
 private void HandlePrimMadeDynamic(PhysxPrim prim, TaintType taint)
 {
     this.QueueCommand(new Commands.SetPhysicalityCmd(prim, true));
 }
Exemple #4
0
 private void HandlePrimMadeStatic(PhysxPrim prim, TaintType taint)
 {
     this.QueueCommand(new Commands.SetPhysicalityCmd(prim, false));
 }
Exemple #5
0
 public override void AddPhysicsActorTaint(PhysicsActor prim, TaintType taint)
 {
     TaintHandler handler;
     if (_taintHandlers.TryGetValue(taint, out handler))
     {
         handler((PhysxPrim)prim, taint);
     }
 }
Exemple #6
0
 private void HandlePrimChangedShape(PhysxPrim prim, TaintType taint)
 {
     this.QueueCommand(new Commands.ChangedShapeCmd(prim));
 }
Exemple #7
0
 private void HandlePrimMadeDynamic(PhysxPrim prim, TaintType taint)
 {
     this.QueueCommand(new Commands.SetPhysicalityCmd(prim, true));
 }
Exemple #8
0
 private void HandlePrimMadeStatic(PhysxPrim prim, TaintType taint)
 {
     this.QueueCommand(new Commands.SetPhysicalityCmd(prim, false));
 }
Exemple #9
0
 public override void AddPhysicsActorTaint(PhysicsActor prim, TaintType taint)
 {
 }
 public override void AddPhysicsActorTaint(PhysicsActor prim, TaintType taint)
 {
 }
Exemple #11
0
 public abstract void AddPhysicsActorTaint(PhysicsActor prim, TaintType taint);
Exemple #12
0
 public abstract void AddPhysicsActorTaint(PhysicsActor prim, TaintType taint);
 public override void AddPhysicsActorTaint(PhysicsActor prim, TaintType taint)
 {
     m_log.DebugFormat("Called AddPhysicsActorTaint() for prim name {0}", prim.SOPName);
 }