Esempio n. 1
0
        public override void AddPhysicsActorTaint(PhysicsActor prim, TaintType taint)
        {
            TaintHandler handler;

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