Difference between revisions of "DOMPhysicsExtended"

From Virtual World Web Wiki
Jump to: navigation, search
(Documentation for the DOMPhysicsExtended class)
(Documentation for the DOMPhysicsExtended class)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Represents a DOMPhysics in JavaScript
+
Represents a [[DOMPhysics]] in JavaScript
  
 
*'''Inherits class: [[DOMObjectExtended]]'''
 
*'''Inherits class: [[DOMObjectExtended]]'''
Line 7: Line 7:
  
 
===Properties===
 
===Properties===
:{{CSharp|DOMPhysicsCommands Command {get; set;} // Via attribution on DOMPhysics }}
 
::
 
::The type of physics operation requested.
 
 
 
:{{CSharp|bool Completed {get; set;} // Via attribution on DOMPhysics }}
 
:{{CSharp|bool Completed {get; set;} // Via attribution on DOMPhysics }}
 
::
 
::
 
::True if the operation has been completed
 
::True if the operation has been completed
  
===Events===
+
===Methods===
:{{CSharp|OnComplete(DOMPhysicsExtended obj)}}
+
:{{CSharp|DOMPhysicsExtended OnComplete(JSFlexibleFunction callback)}}
::Parameters:
+
:::{{CSharp|obj}} : This object
+
 
::
 
::
::Fires when the physics host says the physics operation represented by this object has been completed.
+
::Allows you to bind a callback to this physics commands OnComplete event. Your callback will receive the following parameters:
 +
::  succeeded - The Actor entering the stare
 +
::This method returns the [[DOMPhysicsExtended]] object again so you can chain configuration calls
  
===Methods===
+
:{{CSharp|DOMPhysicsExtended Start()}}
:{{CSharp|void Start()}}
+
 
::
 
::
 
::Asks the physics host to start carrying out the physics operation represented by this object.
 
::Asks the physics host to start carrying out the physics operation represented by this object.
  
:{{CSharp|void Stop()}}
+
:{{CSharp|DOMPhysicsExtended Stop()}}
 
::
 
::
 
::Asks the physics host to stop carrying out the physics operation represented by this object.
 
::Asks the physics host to stop carrying out the physics operation represented by this object.
  
 
__NOTOC____NOEDITSECTION__
 
__NOTOC____NOEDITSECTION__

Latest revision as of 19:58, 3 April 2018

Represents a DOMPhysics in JavaScript

Remarks [edit]

Properties

bool Completed {get; set;} // Via attribution on DOMPhysics
True if the operation has been completed

Methods

DOMPhysicsExtended OnComplete(JSFlexibleFunction callback)
Allows you to bind a callback to this physics commands OnComplete event. Your callback will receive the following parameters:
succeeded - The Actor entering the stare
This method returns the DOMPhysicsExtended object again so you can chain configuration calls
DOMPhysicsExtended Start()
Asks the physics host to start carrying out the physics operation represented by this object.
DOMPhysicsExtended Stop()
Asks the physics host to stop carrying out the physics operation represented by this object.