PropertyBinding.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <base href="../../../" />
  6. <script src="list.js"></script>
  7. <script src="page.js"></script>
  8. <link type="text/css" rel="stylesheet" href="page.css" />
  9. </head>
  10. <body>
  11. <h1>[name]</h1>
  12. <p class="desc">
  13. This holds a reference to a real property in the scene graph; used internally.
  14. </p>
  15. <h2>Constructor</h2>
  16. <h3>[name]( [param:Object3D rootNode], path, parsedPath )</h3>
  17. <p>
  18. -- [page:Object3D rootNode]:
  19. -- path
  20. -- parsedPath (optional)
  21. </p>
  22. <h2>Properties</h2>
  23. <h3>[property:Number path]</h3>
  24. <p>
  25. </p>
  26. <h3>[property:Number parsedPath]</h3>
  27. <p>
  28. </p>
  29. <h3>[property:Number node]</h3>
  30. <p>
  31. </p>
  32. <h3>[property:Number rootNode]</h3>
  33. <p>
  34. </p>
  35. <h3>[property:Object BindingType]</h3>
  36. <p>
  37. </p>
  38. <h3>[property:Object Versioning]</h3>
  39. <p>
  40. </p>
  41. <h3>[property:Array GetterByBindingType]</h3>
  42. <p>
  43. </p>
  44. <h3>[property:Array SetterByBindingTypeAndVersioning]</h3>
  45. <p>
  46. </p>
  47. <h2>Methods</h2>
  48. <h3>[method:null getValue]( [param:Array targetArray], [param:Number offset] )</h3>
  49. <p>
  50. </p>
  51. <h3>[method:null setValue]( [param:Array sourceArray], [param:Number offset] )</h3>
  52. <p>
  53. </p>
  54. <h3>[method:null bind]( )</h3>
  55. <p>
  56. Create getter / setter pair for a property in the scene graph. Used internally by
  57. [page:PropertyBinding.getValue getValue] and [page:PropertyBinding.setValue setValue].
  58. </p>
  59. <h3>[method:null unbind]( )</h3>
  60. <p>
  61. Unbind getter / setter pair for a property in the scene graph.
  62. </p>
  63. <h3>[method:Constructor Composite]( targetGroup, path, optionalParsedPath )</h3>
  64. <p>
  65. Create a new Composite PropertyBinding.
  66. </p>
  67. <h3>[method:Constructor create]( root, path, parsedPath )</h3>
  68. <p>
  69. Create a new Composite PropertyBinding (if root is an [page:AnimationObjectGroup]) or PropertyBinding.
  70. </p>
  71. <h3>[method:Constructor parseTrackName]( trackName )</h3>
  72. <p>
  73. Matches strings in the following forms:<br />
  74. -- nodeName.property<br />
  75. -- nodeName.property[accessor]<br />
  76. -- nodeName.material.property[accessor]<br />
  77. -- uuid.property[accessor]<br />
  78. -- uuid.objectName[objectIndex].propertyName[propertyIndex]<br />
  79. -- parentName/nodeName.property<br />
  80. -- parentName/parentName/nodeName.property[index]<br />
  81. -- .bone[Armature.DEF_cog].position<br />
  82. -- scene:helium_balloon_model:helium_balloon_model.position
  83. </p>
  84. <h3>[method:Constructor findNode]( root, nodeName )</h3>
  85. <p>
  86. Find a node in a node tree or [page:Skeleton Skeleton].
  87. </p>
  88. <h2>Source</h2>
  89. [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
  90. </body>
  91. </html>