scenejs.js 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. "use strict";
  2. // Copyright 2012 United States Government, as represented by the Secretary of Defense, Under
  3. // Secretary of Defense (Personnel & Readiness).
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
  6. // in compliance with the License. You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software distributed under the License
  11. // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
  12. // or implied. See the License for the specific language governing permissions and limitations under
  13. // the License.
  14. /// vwf/model/scenejs.js is a placeholder for a 3-D scene manager.
  15. ///
  16. /// @module vwf/model/scenejs
  17. /// @requires vwf/model
  18. define( [ "module", "vwf/model" ], function( module, model ) {
  19. return model.load( module, {
  20. // == Module Definition ====================================================================
  21. // This is a placeholder for connecting to the SceneJS WebGL scene manager.
  22. // -- initialize ---------------------------------------------------------------------------
  23. initialize: function() {
  24. },
  25. // == Model API ============================================================================
  26. // -- creatingNode -------------------------------------------------------------------------
  27. creatingNode: function( nodeID, childID, childExtendsID, childImplementsIDs,
  28. childSource, childType, childIndex, childName, callback /* ( ready ) */ ) {
  29. },
  30. // -- deletingNode -------------------------------------------------------------------------
  31. //deletingNode: function( nodeID ) {
  32. //},
  33. // -- settingProperty ----------------------------------------------------------------------
  34. //settingProperty: function( nodeID, propertyName, propertyValue ) {
  35. //},
  36. // -- gettingProperty ----------------------------------------------------------------------
  37. //gettingProperty: function( nodeID, propertyName, propertyValue ) {
  38. //},
  39. } );
  40. } );