physics2.vwf.yaml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Copyright 2012 United States Government, as represented by the Secretary of Defense, Under
  2. # Secretary of Defense (Personnel & Readiness).
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
  5. # in compliance with the License. You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software distributed under the License
  10. # is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
  11. # or implied. See the License for the specific language governing permissions and limitations under
  12. # the License.
  13. ## The component representation of physics scene
  14. ##
  15. ## @name physics2.vwf
  16. ## @namespace
  17. ---
  18. extends: http://vwf.example.com/scene.vwf
  19. properties:
  20. ## Gravity
  21. ##
  22. ## @name physics2.vwf#gravity
  23. ## @property
  24. gravity:
  25. set: |
  26. this.gravity = value;
  27. value: [ 0, 0, -50.8, 0 ]
  28. ## Collision System
  29. ##
  30. ## @name physics2.vwf#collisionSystem
  31. ## @property
  32. collisionSystem:
  33. get: |
  34. this.logger.info( "WARNING: scene.collisionSystem can only be set, get is not implemented" );
  35. value: [ false ]