From 55c1c10eeb4f8c0ae87915980c378ab4e05dc11b Mon Sep 17 00:00:00 2001 From: xeolabs Date: Wed, 12 Sep 2018 15:40:53 +0200 Subject: [PATCH] Snapshot build --- build/xeogl.js | 64 +++++------ build/xeogl.module.js | 64 +++++------ docs/classes/AABBGeometry.html | 36 +++--- docs/classes/AmbientLight.html | 36 +++--- docs/classes/Annotation.html | 36 +++--- docs/classes/AnnotationStory.html | 38 +++---- docs/classes/BIMServerModel.html | 36 +++--- docs/classes/BoxGeometry.html | 36 +++--- docs/classes/BuildableModel.html | 36 +++--- docs/classes/Button.html | 38 +++---- docs/classes/Camera.html | 36 +++--- docs/classes/CameraControl.html | 36 +++--- docs/classes/CameraFlightAnimation.html | 36 +++--- docs/classes/CameraFollowAnimation.html | 38 +++---- docs/classes/CameraPath.html | 36 +++--- docs/classes/CameraPathAnimation.html | 38 +++---- docs/classes/Canvas.html | 36 +++--- docs/classes/Clip.html | 36 +++--- docs/classes/Component.html | 53 ++++----- docs/classes/CubeTexture.html | 36 +++--- docs/classes/CubicBezierCurve.html | 38 +++---- docs/classes/Curve.html | 38 +++---- docs/classes/CustomProjection.html | 36 +++--- docs/classes/CylinderGeometry.html | 36 +++--- docs/classes/DirLight.html | 36 +++--- docs/classes/EdgeMaterial.html | 36 +++--- docs/classes/EmphasisMaterial.html | 36 +++--- docs/classes/Fresnel.html | 36 +++--- docs/classes/Frustum.html | 36 +++--- docs/classes/GLTFModel.html | 36 +++--- docs/classes/Geometry.html | 36 +++--- docs/classes/Group.html | 36 +++--- docs/classes/Input.html | 36 +++--- docs/classes/LambertMaterial.html | 36 +++--- docs/classes/LightMap.html | 36 +++--- docs/classes/Material.html | 36 +++--- docs/classes/Mesh.html | 36 +++--- docs/classes/MetallicMaterial.html | 36 +++--- docs/classes/Model.html | 36 +++--- docs/classes/OBBGeometry.html | 36 +++--- docs/classes/OBJModel.html | 36 +++--- docs/classes/Object.html | 36 +++--- docs/classes/Ortho.html | 36 +++--- docs/classes/OutlineMaterial.html | 36 +++--- docs/classes/PathGeometry.html | 36 +++--- docs/classes/Perspective.html | 36 +++--- docs/classes/PhongMaterial.html | 36 +++--- docs/classes/Pin.html | 38 +++---- docs/classes/PlaneGeometry.html | 36 +++--- docs/classes/PointLight.html | 36 +++--- docs/classes/QuadraticBezierCurve.html | 38 +++---- docs/classes/ReflectionMap.html | 36 +++--- docs/classes/STLModel.html | 36 +++--- docs/classes/Scene.html | 103 ++++++++---------- docs/classes/SceneJSModel.html | 36 +++--- docs/classes/Shadow.html | 36 +++--- docs/classes/Skybox.html | 38 +++---- docs/classes/SpecularMaterial.html | 36 +++--- docs/classes/SphereGeometry.html | 36 +++--- docs/classes/Spinner.html | 36 +++--- docs/classes/SplineCurve.html | 38 +++---- docs/classes/SplineCurveHelper.html | 38 +++---- docs/classes/SpotLight.html | 36 +++--- docs/classes/StereoEffect.html | 36 +++--- docs/classes/Story.html | 38 +++---- docs/classes/TeapotGeometry.html | 36 +++--- docs/classes/TestModel.html | 36 +++--- docs/classes/Texture.html | 36 +++--- docs/classes/TorusGeometry.html | 36 +++--- docs/classes/VectorTextGeometry.html | 36 +++--- docs/classes/Viewport.html | 36 +++--- docs/classes/xeogl.xeogl.html | 2 +- ...xeogl_examples_js_models_glTFModel.js.html | 2 +- ...abs_xeogl-next_xeogl_src_component.js.html | 3 +- ..._xeolabs_xeogl-next_xeogl_src_loop.js.html | 39 +++---- ...l-next_xeogl_src_renderer_renderer.js.html | 8 +- ...s_xeogl-next_xeogl_src_scene_scene.js.html | 20 ++-- 77 files changed, 1357 insertions(+), 1437 deletions(-) diff --git a/build/xeogl.js b/build/xeogl.js index 7f888f675..91e173313 100644 --- a/build/xeogl.js +++ b/build/xeogl.js @@ -5383,7 +5383,6 @@ const componentClasses = { @param [cfg] {*} DepthBuf configuration @param [cfg.id] {String} Optional ID, unique among all components in the parent {{#crossLink "Scene"}}Scene{{/crossLink}}, generated automatically when omitted. @param [cfg.meta] {String:Object} Optional map of user-defined metadata to attach to this Component. - @param [cfg.isDefault] {Boolean} Set true when this is one of xeogl's default components. */ const type = "xeogl.Component"; @@ -5456,7 +5455,7 @@ class Component { this._renderer = this.scene._renderer; } - this._dontClear = !!cfg.dontClear; + this._dontClear = !!cfg.dontClear; // Prevent Scene#clear from destroying this component this._model = null; this._renderer = this.scene._renderer; @@ -19706,18 +19705,14 @@ const Renderer = function ( scene, options) { let i; let len; let mesh; - const pickTransparent = !!params.pickTransparent; - const includeMeshIds = !!params.includeMeshIds; - const excludeMeshIds = !!params.excludeMeshIds; + const includeMeshIds = params.includeMeshIds; + const excludeMeshIds = params.excludeMeshIds; for (i = 0, len = meshListLen; i < len; i++) { mesh = meshList[i]; if (mesh._state.culled === true || mesh._state.visible === false || mesh._state.pickable === false) { continue; } - if (!pickTransparent && mesh._material._state.alpha < 0) { - continue; - } if (includeMeshIds && !includeMeshIds[mesh.id]) { continue; } @@ -27289,7 +27284,6 @@ class Scene extends Component { return this.components["default.geometry"] || new BoxGeometry(this, { id: "default.geometry", - isDefault: true, dontClear: true }); } @@ -27310,7 +27304,6 @@ class Scene extends Component { get material() { return this.components["default.material"] || new PhongMaterial(this, { id: "default.material", - isDefault: true, emissive: [0.4, 0.4, 0.4], // Visible by default on geometry without normals dontClear: true }); @@ -27333,7 +27326,6 @@ class Scene extends Component { return this.components["default.ghostMaterial"] || new EmphasisMaterial(this, { id: "default.ghostMaterial", preset: "sepia", - isDefault: true, dontClear: true }); } @@ -27355,7 +27347,6 @@ class Scene extends Component { return this.components["default.highlightMaterial"] || new EmphasisMaterial(this, { id: "default.highlightMaterial", preset: "yellowHighlight", - isDefault: true, dontClear: true }); } @@ -27377,7 +27368,6 @@ class Scene extends Component { return this.components["default.selectedMaterial"] || new EmphasisMaterial(this, { id: "default.selectedMaterial", preset: "greenSelected", - isDefault: true, dontClear: true }); } @@ -27402,7 +27392,6 @@ class Scene extends Component { edgeColor: [0.0, 0.0, 0.0], edgeAlpha: 1.0, edgeWidth: 1, - isDefault: true, dontClear: true }); } @@ -27423,7 +27412,6 @@ class Scene extends Component { get outlineMaterial() { return this.components["default.outlineMaterial"] || new OutlineMaterial(this, { id: "default.outlineMaterial", - isDefault: true, dontClear: true }); } @@ -27618,7 +27606,6 @@ class Scene extends Component { @param {*} params Picking parameters. @param {Boolean} [params.pickSurface=false] Whether to find the picked position on the surface of the Mesh. - @param {Boolean} [params.pickTransparent=true] Whether to pick transparent objects (true) or pick through them as if they did not exist (false). @param {Float32Array} [params.canvasPos] Canvas-space coordinates. When ray-picking, this will override the **origin** and ** direction** parameters and will cause the ray to be fired through the canvas at this position, directly along the negative View-space Z-axis. @@ -27967,17 +27954,15 @@ class Scene extends Component { @method clear */ - clear() { // FIXME: should only clear user-created components + clear() { var component; for (const id in this.components) { if (this.components.hasOwnProperty(id)) { // Each component fires "destroyed" as it is destroyed, // which this Scene handles by removing the component component = this.components[id]; - if (!component._dontClear) { // Don't destroy components like xeogl.Camera, xeogl.Input, xeogl.Viewport + if (!component._dontClear) { // Don't destroy components like xeogl.Camera, xeogl.Input, xeogl.Viewport etc. component.destroy(); - } else { - this.log("Not clearing: " + component.type); } } } @@ -28238,7 +28223,11 @@ class Scene extends Component { super.destroy(); - this.clear(); + for (const id in this.components) { + if (this.components.hasOwnProperty(id)) { + this.components[id].destroy(); + } + } this.canvas.gl = null; @@ -28448,26 +28437,23 @@ const numFPSSamples = 30; let lastTime = 0; let elapsedTime; let totalFPS = 0; -let suspended = false; const frame = function () { - if (!suspended) { - let time = Date.now(); - if (lastTime > 0) { // Log FPS stats - elapsedTime = time - lastTime; - var newFPS = 1000 / elapsedTime; // Moving average of FPS - totalFPS += newFPS; - fpsSamples.push(newFPS); - if (fpsSamples.length >= numFPSSamples) { - totalFPS -= fpsSamples.shift(); - } - stats.frame.fps = Math.round(totalFPS / fpsSamples.length); - } - runTasks(time); - fireTickEvents(time); - renderScenes(); - lastTime = time; - } + let time = Date.now(); + if (lastTime > 0) { // Log FPS stats + elapsedTime = time - lastTime; + var newFPS = 1000 / elapsedTime; // Moving average of FPS + totalFPS += newFPS; + fpsSamples.push(newFPS); + if (fpsSamples.length >= numFPSSamples) { + totalFPS -= fpsSamples.shift(); + } + stats.frame.fps = Math.round(totalFPS / fpsSamples.length); + } + runTasks(time); + fireTickEvents(time); + renderScenes(); + lastTime = time; window.requestAnimationFrame(frame); }; diff --git a/build/xeogl.module.js b/build/xeogl.module.js index 20ffcb51c..e58f63f80 100644 --- a/build/xeogl.module.js +++ b/build/xeogl.module.js @@ -5377,7 +5377,6 @@ const componentClasses = { @param [cfg] {*} DepthBuf configuration @param [cfg.id] {String} Optional ID, unique among all components in the parent {{#crossLink "Scene"}}Scene{{/crossLink}}, generated automatically when omitted. @param [cfg.meta] {String:Object} Optional map of user-defined metadata to attach to this Component. - @param [cfg.isDefault] {Boolean} Set true when this is one of xeogl's default components. */ const type = "xeogl.Component"; @@ -5450,7 +5449,7 @@ class Component { this._renderer = this.scene._renderer; } - this._dontClear = !!cfg.dontClear; + this._dontClear = !!cfg.dontClear; // Prevent Scene#clear from destroying this component this._model = null; this._renderer = this.scene._renderer; @@ -19700,18 +19699,14 @@ const Renderer = function ( scene, options) { let i; let len; let mesh; - const pickTransparent = !!params.pickTransparent; - const includeMeshIds = !!params.includeMeshIds; - const excludeMeshIds = !!params.excludeMeshIds; + const includeMeshIds = params.includeMeshIds; + const excludeMeshIds = params.excludeMeshIds; for (i = 0, len = meshListLen; i < len; i++) { mesh = meshList[i]; if (mesh._state.culled === true || mesh._state.visible === false || mesh._state.pickable === false) { continue; } - if (!pickTransparent && mesh._material._state.alpha < 0) { - continue; - } if (includeMeshIds && !includeMeshIds[mesh.id]) { continue; } @@ -27283,7 +27278,6 @@ class Scene extends Component { return this.components["default.geometry"] || new BoxGeometry(this, { id: "default.geometry", - isDefault: true, dontClear: true }); } @@ -27304,7 +27298,6 @@ class Scene extends Component { get material() { return this.components["default.material"] || new PhongMaterial(this, { id: "default.material", - isDefault: true, emissive: [0.4, 0.4, 0.4], // Visible by default on geometry without normals dontClear: true }); @@ -27327,7 +27320,6 @@ class Scene extends Component { return this.components["default.ghostMaterial"] || new EmphasisMaterial(this, { id: "default.ghostMaterial", preset: "sepia", - isDefault: true, dontClear: true }); } @@ -27349,7 +27341,6 @@ class Scene extends Component { return this.components["default.highlightMaterial"] || new EmphasisMaterial(this, { id: "default.highlightMaterial", preset: "yellowHighlight", - isDefault: true, dontClear: true }); } @@ -27371,7 +27362,6 @@ class Scene extends Component { return this.components["default.selectedMaterial"] || new EmphasisMaterial(this, { id: "default.selectedMaterial", preset: "greenSelected", - isDefault: true, dontClear: true }); } @@ -27396,7 +27386,6 @@ class Scene extends Component { edgeColor: [0.0, 0.0, 0.0], edgeAlpha: 1.0, edgeWidth: 1, - isDefault: true, dontClear: true }); } @@ -27417,7 +27406,6 @@ class Scene extends Component { get outlineMaterial() { return this.components["default.outlineMaterial"] || new OutlineMaterial(this, { id: "default.outlineMaterial", - isDefault: true, dontClear: true }); } @@ -27612,7 +27600,6 @@ class Scene extends Component { @param {*} params Picking parameters. @param {Boolean} [params.pickSurface=false] Whether to find the picked position on the surface of the Mesh. - @param {Boolean} [params.pickTransparent=true] Whether to pick transparent objects (true) or pick through them as if they did not exist (false). @param {Float32Array} [params.canvasPos] Canvas-space coordinates. When ray-picking, this will override the **origin** and ** direction** parameters and will cause the ray to be fired through the canvas at this position, directly along the negative View-space Z-axis. @@ -27961,17 +27948,15 @@ class Scene extends Component { @method clear */ - clear() { // FIXME: should only clear user-created components + clear() { var component; for (const id in this.components) { if (this.components.hasOwnProperty(id)) { // Each component fires "destroyed" as it is destroyed, // which this Scene handles by removing the component component = this.components[id]; - if (!component._dontClear) { // Don't destroy components like xeogl.Camera, xeogl.Input, xeogl.Viewport + if (!component._dontClear) { // Don't destroy components like xeogl.Camera, xeogl.Input, xeogl.Viewport etc. component.destroy(); - } else { - this.log("Not clearing: " + component.type); } } } @@ -28232,7 +28217,11 @@ class Scene extends Component { super.destroy(); - this.clear(); + for (const id in this.components) { + if (this.components.hasOwnProperty(id)) { + this.components[id].destroy(); + } + } this.canvas.gl = null; @@ -28442,26 +28431,23 @@ const numFPSSamples = 30; let lastTime = 0; let elapsedTime; let totalFPS = 0; -let suspended = false; const frame = function () { - if (!suspended) { - let time = Date.now(); - if (lastTime > 0) { // Log FPS stats - elapsedTime = time - lastTime; - var newFPS = 1000 / elapsedTime; // Moving average of FPS - totalFPS += newFPS; - fpsSamples.push(newFPS); - if (fpsSamples.length >= numFPSSamples) { - totalFPS -= fpsSamples.shift(); - } - stats.frame.fps = Math.round(totalFPS / fpsSamples.length); - } - runTasks(time); - fireTickEvents(time); - renderScenes(); - lastTime = time; - } + let time = Date.now(); + if (lastTime > 0) { // Log FPS stats + elapsedTime = time - lastTime; + var newFPS = 1000 / elapsedTime; // Moving average of FPS + totalFPS += newFPS; + fpsSamples.push(newFPS); + if (fpsSamples.length >= numFPSSamples) { + totalFPS -= fpsSamples.shift(); + } + stats.frame.fps = Math.round(totalFPS / fpsSamples.length); + } + runTasks(time); + fireTickEvents(time); + renderScenes(); + lastTime = time; window.requestAnimationFrame(frame); }; diff --git a/docs/classes/AABBGeometry.html b/docs/classes/AABBGeometry.html index 38669048f..ec260a94f 100644 --- a/docs/classes/AABBGeometry.html +++ b/docs/classes/AABBGeometry.html @@ -796,7 +796,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -894,7 +894,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -963,7 +963,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1067,7 +1067,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1195,7 +1195,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1302,7 +1302,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1418,7 +1418,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1510,7 +1510,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1616,7 +1616,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1765,7 +1765,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -1889,7 +1889,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -1969,7 +1969,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2013,7 +2013,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2055,7 +2055,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2099,7 +2099,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2144,7 +2144,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2188,7 +2188,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2387,7 +2387,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/AmbientLight.html b/docs/classes/AmbientLight.html index 7df8f8b29..0adc7da64 100644 --- a/docs/classes/AmbientLight.html +++ b/docs/classes/AmbientLight.html @@ -793,7 +793,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -891,7 +891,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -960,7 +960,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1064,7 +1064,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1192,7 +1192,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1299,7 +1299,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1415,7 +1415,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1507,7 +1507,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1613,7 +1613,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1762,7 +1762,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -1886,7 +1886,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2013,7 +2013,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2057,7 +2057,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2146,7 +2146,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2190,7 +2190,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2235,7 +2235,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2279,7 +2279,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2384,7 +2384,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/Annotation.html b/docs/classes/Annotation.html index 50dc6715a..ec01c1860 100644 --- a/docs/classes/Annotation.html +++ b/docs/classes/Annotation.html @@ -1311,7 +1311,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -1409,7 +1409,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1478,7 +1478,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1582,7 +1582,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1710,7 +1710,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1817,7 +1817,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1933,7 +1933,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -2025,7 +2025,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -2131,7 +2131,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -2280,7 +2280,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -2404,7 +2404,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2626,7 +2626,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2768,7 +2768,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -3000,7 +3000,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -3044,7 +3044,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -3279,7 +3279,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -3323,7 +3323,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -3854,7 +3854,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/AnnotationStory.html b/docs/classes/AnnotationStory.html index a8e56f158..9617611bf 100644 --- a/docs/classes/AnnotationStory.html +++ b/docs/classes/AnnotationStory.html @@ -809,7 +809,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -907,7 +907,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -976,7 +976,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1080,7 +1080,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1208,7 +1208,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1315,7 +1315,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1431,7 +1431,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1523,7 +1523,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1629,7 +1629,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1778,7 +1778,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -1902,7 +1902,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -1982,7 +1982,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2026,7 +2026,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2068,7 +2068,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2112,7 +2112,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2157,7 +2157,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2201,7 +2201,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2250,7 +2250,7 @@

type

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

@@ -2303,7 +2303,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/BIMServerModel.html b/docs/classes/BIMServerModel.html index e01216067..752b9c020 100644 --- a/docs/classes/BIMServerModel.html +++ b/docs/classes/BIMServerModel.html @@ -1558,7 +1558,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -1656,7 +1656,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1725,7 +1725,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1829,7 +1829,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1957,7 +1957,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -2064,7 +2064,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -2364,7 +2364,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -2629,7 +2629,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -2735,7 +2735,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -2884,7 +2884,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -3868,7 +3868,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -4521,7 +4521,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -5025,7 +5025,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -5155,7 +5155,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -5199,7 +5199,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -5814,7 +5814,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -5953,7 +5953,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -6246,7 +6246,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/BoxGeometry.html b/docs/classes/BoxGeometry.html index 16036256c..e28a92af9 100644 --- a/docs/classes/BoxGeometry.html +++ b/docs/classes/BoxGeometry.html @@ -885,7 +885,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -983,7 +983,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1052,7 +1052,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1156,7 +1156,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1284,7 +1284,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1391,7 +1391,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1507,7 +1507,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1599,7 +1599,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1705,7 +1705,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1854,7 +1854,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -1978,7 +1978,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2197,7 +2197,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2241,7 +2241,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2331,7 +2331,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2375,7 +2375,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2648,7 +2648,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2692,7 +2692,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2884,7 +2884,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/BuildableModel.html b/docs/classes/BuildableModel.html index 33e6c6e18..7747b67b4 100644 --- a/docs/classes/BuildableModel.html +++ b/docs/classes/BuildableModel.html @@ -1467,7 +1467,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -1792,7 +1792,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1861,7 +1861,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1965,7 +1965,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -2189,7 +2189,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -2296,7 +2296,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -2412,7 +2412,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -2677,7 +2677,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -2783,7 +2783,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -2932,7 +2932,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -4784,7 +4784,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -5437,7 +5437,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -5941,7 +5941,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -6071,7 +6071,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -6115,7 +6115,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -6730,7 +6730,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -6821,7 +6821,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -7114,7 +7114,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/Button.html b/docs/classes/Button.html index a8b0027b2..bf172bfa7 100644 --- a/docs/classes/Button.html +++ b/docs/classes/Button.html @@ -1002,7 +1002,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -1100,7 +1100,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1169,7 +1169,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1273,7 +1273,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1401,7 +1401,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1508,7 +1508,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1624,7 +1624,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1716,7 +1716,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1822,7 +1822,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1971,7 +1971,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -2095,7 +2095,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2268,7 +2268,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2362,7 +2362,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2498,7 +2498,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2542,7 +2542,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2777,7 +2777,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2821,7 +2821,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2870,7 +2870,7 @@

type

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

@@ -3184,7 +3184,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/Camera.html b/docs/classes/Camera.html index 740791ee0..48ae98538 100644 --- a/docs/classes/Camera.html +++ b/docs/classes/Camera.html @@ -1064,7 +1064,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -1162,7 +1162,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1231,7 +1231,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1335,7 +1335,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1463,7 +1463,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1570,7 +1570,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1686,7 +1686,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1778,7 +1778,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1884,7 +1884,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -2033,7 +2033,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -2525,7 +2525,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2887,7 +2887,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -3168,7 +3168,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -3308,7 +3308,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -3352,7 +3352,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -3686,7 +3686,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -3730,7 +3730,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -4242,7 +4242,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/CameraControl.html b/docs/classes/CameraControl.html index cbdf2d5f4..893d7bfba 100644 --- a/docs/classes/CameraControl.html +++ b/docs/classes/CameraControl.html @@ -1017,7 +1017,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -1115,7 +1115,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1184,7 +1184,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1288,7 +1288,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1416,7 +1416,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1523,7 +1523,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1639,7 +1639,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1731,7 +1731,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1837,7 +1837,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1986,7 +1986,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -2110,7 +2110,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2237,7 +2237,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2377,7 +2377,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2519,7 +2519,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2563,7 +2563,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2752,7 +2752,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2796,7 +2796,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2952,7 +2952,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/CameraFlightAnimation.html b/docs/classes/CameraFlightAnimation.html index 95d7c0556..5478ca53b 100644 --- a/docs/classes/CameraFlightAnimation.html +++ b/docs/classes/CameraFlightAnimation.html @@ -955,7 +955,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -1053,7 +1053,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1122,7 +1122,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1226,7 +1226,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1881,7 +1881,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1988,7 +1988,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -2104,7 +2104,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -2196,7 +2196,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -2302,7 +2302,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -2451,7 +2451,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -2633,7 +2633,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2713,7 +2713,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2904,7 +2904,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2946,7 +2946,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2990,7 +2990,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -3035,7 +3035,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -3079,7 +3079,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -3232,7 +3232,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/CameraFollowAnimation.html b/docs/classes/CameraFollowAnimation.html index 821228fbc..abd4f558c 100644 --- a/docs/classes/CameraFollowAnimation.html +++ b/docs/classes/CameraFollowAnimation.html @@ -890,7 +890,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -988,7 +988,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1057,7 +1057,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1161,7 +1161,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1289,7 +1289,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1396,7 +1396,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1512,7 +1512,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1604,7 +1604,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1710,7 +1710,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1859,7 +1859,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -1983,7 +1983,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2063,7 +2063,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2256,7 +2256,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2298,7 +2298,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2342,7 +2342,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2387,7 +2387,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2431,7 +2431,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2575,7 +2575,7 @@

type

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

@@ -2628,7 +2628,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/CameraPath.html b/docs/classes/CameraPath.html index 936096bbb..f81169fa0 100644 --- a/docs/classes/CameraPath.html +++ b/docs/classes/CameraPath.html @@ -764,7 +764,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -862,7 +862,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -931,7 +931,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1035,7 +1035,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1163,7 +1163,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1270,7 +1270,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1386,7 +1386,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1478,7 +1478,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1584,7 +1584,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1733,7 +1733,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -1857,7 +1857,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -1937,7 +1937,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2077,7 +2077,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2168,7 +2168,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2212,7 +2212,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2257,7 +2257,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2301,7 +2301,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2455,7 +2455,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/CameraPathAnimation.html b/docs/classes/CameraPathAnimation.html index fe16b4d29..d1c360d81 100644 --- a/docs/classes/CameraPathAnimation.html +++ b/docs/classes/CameraPathAnimation.html @@ -885,7 +885,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -983,7 +983,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1052,7 +1052,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1156,7 +1156,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1399,7 +1399,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1506,7 +1506,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1622,7 +1622,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1714,7 +1714,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1820,7 +1820,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1969,7 +1969,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -2577,7 +2577,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2703,7 +2703,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2747,7 +2747,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2789,7 +2789,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2833,7 +2833,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2923,7 +2923,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2967,7 +2967,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -3016,7 +3016,7 @@

type

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

@@ -3069,7 +3069,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/Canvas.html b/docs/classes/Canvas.html index ddcf943d5..e5af334d2 100644 --- a/docs/classes/Canvas.html +++ b/docs/classes/Canvas.html @@ -715,7 +715,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -813,7 +813,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -882,7 +882,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -986,7 +986,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1319,7 +1319,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1426,7 +1426,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1542,7 +1542,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1634,7 +1634,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1740,7 +1740,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1889,7 +1889,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -2013,7 +2013,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2290,7 +2290,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2381,7 +2381,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2423,7 +2423,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2467,7 +2467,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2512,7 +2512,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2603,7 +2603,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2872,7 +2872,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/Clip.html b/docs/classes/Clip.html index 4459dfb2b..89c103965 100644 --- a/docs/classes/Clip.html +++ b/docs/classes/Clip.html @@ -844,7 +844,7 @@

create

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

@@ -942,7 +942,7 @@

destroy

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

@@ -1011,7 +1011,7 @@

error

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

@@ -1115,7 +1115,7 @@

fire

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

@@ -1243,7 +1243,7 @@

hasSubs

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

@@ -1350,7 +1350,7 @@

isType

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

@@ -1466,7 +1466,7 @@

log

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

@@ -1558,7 +1558,7 @@

off

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

@@ -1664,7 +1664,7 @@

on

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

@@ -1813,7 +1813,7 @@

once

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

@@ -1937,7 +1937,7 @@

warn

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

@@ -2064,7 +2064,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

@@ -2157,7 +2157,7 @@

id

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

@@ -2199,7 +2199,7 @@

metadata

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

@@ -2243,7 +2243,7 @@

model

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

@@ -2335,7 +2335,7 @@

scene

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

@@ -2379,7 +2379,7 @@

superTypes

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

@@ -2552,7 +2552,7 @@

destroyed

- /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

diff --git a/docs/classes/Component.html b/docs/classes/Component.html index 34683a1ee..639160c98 100644 --- a/docs/classes/Component.html +++ b/docs/classes/Component.html @@ -599,21 +599,6 @@

Parameters:

-
  • - - [isDefault] - Boolean - optional - - -
    -

    Set true when this is one of xeogl's default components.

    - -
    - - -
  • - @@ -870,7 +855,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -971,7 +956,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1043,7 +1028,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1150,7 +1135,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1281,7 +1266,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1391,7 +1376,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1510,7 +1495,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1605,7 +1590,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1714,7 +1699,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1866,7 +1851,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1993,7 +1978,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2076,7 +2061,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2123,7 +2108,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2168,7 +2153,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2215,7 +2200,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2263,7 +2248,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2310,7 +2295,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2362,7 +2347,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -2418,7 +2403,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/CubeTexture.html b/docs/classes/CubeTexture.html index 41fb3f20e..93fb90b25 100644 --- a/docs/classes/CubeTexture.html +++ b/docs/classes/CubeTexture.html @@ -757,7 +757,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -855,7 +855,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -924,7 +924,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1028,7 +1028,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1156,7 +1156,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1263,7 +1263,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1379,7 +1379,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1471,7 +1471,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1577,7 +1577,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1726,7 +1726,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1850,7 +1850,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1930,7 +1930,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -1974,7 +1974,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2016,7 +2016,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2060,7 +2060,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2105,7 +2105,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2149,7 +2149,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2254,7 +2254,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/CubicBezierCurve.html b/docs/classes/CubicBezierCurve.html index 967483101..2b9ede522 100644 --- a/docs/classes/CubicBezierCurve.html +++ b/docs/classes/CubicBezierCurve.html @@ -958,7 +958,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1056,7 +1056,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1125,7 +1125,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1229,7 +1229,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1681,7 +1681,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1788,7 +1788,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1904,7 +1904,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1996,7 +1996,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2102,7 +2102,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2251,7 +2251,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2375,7 +2375,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2455,7 +2455,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2499,7 +2499,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2583,7 +2583,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2627,7 +2627,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2717,7 +2717,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2761,7 +2761,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2901,7 +2901,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -3146,7 +3146,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Curve.html b/docs/classes/Curve.html index 8c6cb9849..f2cb5322b 100644 --- a/docs/classes/Curve.html +++ b/docs/classes/Curve.html @@ -769,7 +769,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -867,7 +867,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -936,7 +936,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1040,7 +1040,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1388,7 +1388,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1495,7 +1495,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1611,7 +1611,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1703,7 +1703,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1809,7 +1809,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1958,7 +1958,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2082,7 +2082,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2162,7 +2162,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2206,7 +2206,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2293,7 +2293,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2337,7 +2337,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2382,7 +2382,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2426,7 +2426,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2569,7 +2569,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -2622,7 +2622,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/CustomProjection.html b/docs/classes/CustomProjection.html index 0b50eaa43..d78b97555 100644 --- a/docs/classes/CustomProjection.html +++ b/docs/classes/CustomProjection.html @@ -745,7 +745,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -843,7 +843,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -912,7 +912,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1016,7 +1016,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1144,7 +1144,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1251,7 +1251,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1367,7 +1367,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1459,7 +1459,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1565,7 +1565,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1714,7 +1714,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1838,7 +1838,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1918,7 +1918,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -1962,7 +1962,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2052,7 +2052,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2096,7 +2096,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2141,7 +2141,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2185,7 +2185,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2290,7 +2290,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/CylinderGeometry.html b/docs/classes/CylinderGeometry.html index c37546994..72b9858e9 100644 --- a/docs/classes/CylinderGeometry.html +++ b/docs/classes/CylinderGeometry.html @@ -942,7 +942,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1040,7 +1040,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1109,7 +1109,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1213,7 +1213,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1341,7 +1341,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1448,7 +1448,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1564,7 +1564,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1656,7 +1656,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1762,7 +1762,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1911,7 +1911,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2035,7 +2035,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2254,7 +2254,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2298,7 +2298,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2388,7 +2388,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2432,7 +2432,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2705,7 +2705,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2749,7 +2749,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2941,7 +2941,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/DirLight.html b/docs/classes/DirLight.html index d9d4ef9de..8abb4a6df 100644 --- a/docs/classes/DirLight.html +++ b/docs/classes/DirLight.html @@ -879,7 +879,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -977,7 +977,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1046,7 +1046,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1150,7 +1150,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1278,7 +1278,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1385,7 +1385,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1501,7 +1501,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1593,7 +1593,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1699,7 +1699,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1848,7 +1848,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1972,7 +1972,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2099,7 +2099,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2190,7 +2190,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2280,7 +2280,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2324,7 +2324,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2369,7 +2369,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2460,7 +2460,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2565,7 +2565,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/EdgeMaterial.html b/docs/classes/EdgeMaterial.html index ca88732df..1ba78799c 100644 --- a/docs/classes/EdgeMaterial.html +++ b/docs/classes/EdgeMaterial.html @@ -945,7 +945,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1043,7 +1043,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1112,7 +1112,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1216,7 +1216,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1344,7 +1344,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1451,7 +1451,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1567,7 +1567,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1659,7 +1659,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1765,7 +1765,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1914,7 +1914,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2038,7 +2038,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2118,7 +2118,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2304,7 +2304,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2346,7 +2346,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2390,7 +2390,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2540,7 +2540,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2584,7 +2584,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2689,7 +2689,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/EmphasisMaterial.html b/docs/classes/EmphasisMaterial.html index f28abcfde..9419348fc 100644 --- a/docs/classes/EmphasisMaterial.html +++ b/docs/classes/EmphasisMaterial.html @@ -1179,7 +1179,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1277,7 +1277,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1346,7 +1346,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1450,7 +1450,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1578,7 +1578,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1685,7 +1685,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1801,7 +1801,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1893,7 +1893,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1999,7 +1999,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2148,7 +2148,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2272,7 +2272,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2401,7 +2401,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2776,7 +2776,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2818,7 +2818,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2862,7 +2862,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -3012,7 +3012,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -3056,7 +3056,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -3350,7 +3350,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Fresnel.html b/docs/classes/Fresnel.html index 6c33bf42a..c4de0f894 100644 --- a/docs/classes/Fresnel.html +++ b/docs/classes/Fresnel.html @@ -861,7 +861,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -959,7 +959,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1028,7 +1028,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1132,7 +1132,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1260,7 +1260,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1367,7 +1367,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1483,7 +1483,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1575,7 +1575,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1681,7 +1681,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1830,7 +1830,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1954,7 +1954,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2128,7 +2128,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2266,7 +2266,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2308,7 +2308,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2352,7 +2352,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2444,7 +2444,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2488,7 +2488,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2593,7 +2593,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Frustum.html b/docs/classes/Frustum.html index 5721568a3..7d0c9d9c8 100644 --- a/docs/classes/Frustum.html +++ b/docs/classes/Frustum.html @@ -901,7 +901,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -999,7 +999,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1068,7 +1068,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1172,7 +1172,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1300,7 +1300,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1407,7 +1407,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1523,7 +1523,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1615,7 +1615,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1721,7 +1721,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1870,7 +1870,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1994,7 +1994,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2122,7 +2122,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2214,7 +2214,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2352,7 +2352,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2396,7 +2396,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2537,7 +2537,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2581,7 +2581,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2802,7 +2802,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/GLTFModel.html b/docs/classes/GLTFModel.html index 3a4255d96..ef67f7b21 100644 --- a/docs/classes/GLTFModel.html +++ b/docs/classes/GLTFModel.html @@ -1988,7 +1988,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -2086,7 +2086,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -2155,7 +2155,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -2259,7 +2259,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -2387,7 +2387,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2494,7 +2494,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2794,7 +2794,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -3059,7 +3059,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -3165,7 +3165,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -3314,7 +3314,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -4471,7 +4471,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -5130,7 +5130,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -5634,7 +5634,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -5811,7 +5811,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -5855,7 +5855,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -6470,7 +6470,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -6609,7 +6609,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -6902,7 +6902,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Geometry.html b/docs/classes/Geometry.html index 94bd23487..f4a1a827a 100644 --- a/docs/classes/Geometry.html +++ b/docs/classes/Geometry.html @@ -986,7 +986,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1084,7 +1084,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1153,7 +1153,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1257,7 +1257,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1385,7 +1385,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1492,7 +1492,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1608,7 +1608,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1700,7 +1700,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1806,7 +1806,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1955,7 +1955,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2079,7 +2079,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2307,7 +2307,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2351,7 +2351,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2444,7 +2444,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2488,7 +2488,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2776,7 +2776,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2820,7 +2820,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -3018,7 +3018,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Group.html b/docs/classes/Group.html index c87325838..9de37b80f 100644 --- a/docs/classes/Group.html +++ b/docs/classes/Group.html @@ -1341,7 +1341,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1439,7 +1439,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1508,7 +1508,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1612,7 +1612,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1740,7 +1740,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1847,7 +1847,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1963,7 +1963,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2055,7 +2055,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2161,7 +2161,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2310,7 +2310,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -3140,7 +3140,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -3709,7 +3709,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -3984,7 +3984,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -4070,7 +4070,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -4114,7 +4114,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -4601,7 +4601,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -4692,7 +4692,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -4932,7 +4932,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Input.html b/docs/classes/Input.html index 86936ab86..4a3de2a72 100644 --- a/docs/classes/Input.html +++ b/docs/classes/Input.html @@ -2101,7 +2101,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -2199,7 +2199,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -2268,7 +2268,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -2372,7 +2372,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -2500,7 +2500,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2607,7 +2607,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2723,7 +2723,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2815,7 +2815,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2921,7 +2921,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -3070,7 +3070,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -3194,7 +3194,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -3274,7 +3274,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -3318,7 +3318,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -12666,7 +12666,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -12710,7 +12710,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -12755,7 +12755,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -12799,7 +12799,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -12973,7 +12973,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/LambertMaterial.html b/docs/classes/LambertMaterial.html index 0ed32e8d8..d92268bdb 100644 --- a/docs/classes/LambertMaterial.html +++ b/docs/classes/LambertMaterial.html @@ -1018,7 +1018,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1116,7 +1116,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1185,7 +1185,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1289,7 +1289,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1417,7 +1417,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1524,7 +1524,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1640,7 +1640,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1732,7 +1732,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1838,7 +1838,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1987,7 +1987,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2111,7 +2111,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2382,7 +2382,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2522,7 +2522,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2611,7 +2611,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2655,7 +2655,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2747,7 +2747,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2791,7 +2791,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2896,7 +2896,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/LightMap.html b/docs/classes/LightMap.html index 075c6cfaa..b1a372d57 100644 --- a/docs/classes/LightMap.html +++ b/docs/classes/LightMap.html @@ -760,7 +760,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -858,7 +858,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -927,7 +927,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1031,7 +1031,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1159,7 +1159,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1266,7 +1266,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1382,7 +1382,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1474,7 +1474,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1580,7 +1580,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1729,7 +1729,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1853,7 +1853,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1933,7 +1933,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -1977,7 +1977,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2019,7 +2019,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2063,7 +2063,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2108,7 +2108,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2152,7 +2152,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2257,7 +2257,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Material.html b/docs/classes/Material.html index e9ae18845..4e5533ea2 100644 --- a/docs/classes/Material.html +++ b/docs/classes/Material.html @@ -624,7 +624,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -722,7 +722,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -791,7 +791,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -895,7 +895,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1023,7 +1023,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1130,7 +1130,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1246,7 +1246,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1338,7 +1338,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1444,7 +1444,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1593,7 +1593,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1717,7 +1717,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1797,7 +1797,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -1841,7 +1841,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -1883,7 +1883,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -1927,7 +1927,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -1972,7 +1972,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2016,7 +2016,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2121,7 +2121,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Mesh.html b/docs/classes/Mesh.html index 7d7a6fda2..01bfb87bd 100644 --- a/docs/classes/Mesh.html +++ b/docs/classes/Mesh.html @@ -1904,7 +1904,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -2002,7 +2002,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -2071,7 +2071,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -2175,7 +2175,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -2303,7 +2303,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2410,7 +2410,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2526,7 +2526,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2618,7 +2618,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2724,7 +2724,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2873,7 +2873,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -3703,7 +3703,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -4344,7 +4344,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -4817,7 +4817,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -4999,7 +4999,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -5043,7 +5043,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -5588,7 +5588,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -5779,7 +5779,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -6071,7 +6071,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/MetallicMaterial.html b/docs/classes/MetallicMaterial.html index 3662c13d0..8c9159c93 100644 --- a/docs/classes/MetallicMaterial.html +++ b/docs/classes/MetallicMaterial.html @@ -1506,7 +1506,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1604,7 +1604,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1673,7 +1673,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1777,7 +1777,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1905,7 +1905,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2012,7 +2012,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2128,7 +2128,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2220,7 +2220,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2326,7 +2326,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2475,7 +2475,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2599,7 +2599,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -3037,7 +3037,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -3228,7 +3228,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -3317,7 +3317,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -3513,7 +3513,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -3805,7 +3805,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -3896,7 +3896,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -4001,7 +4001,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Model.html b/docs/classes/Model.html index 6d69f0a2f..263a67761 100644 --- a/docs/classes/Model.html +++ b/docs/classes/Model.html @@ -3696,7 +3696,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -4140,7 +4140,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -5801,7 +5801,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -5905,7 +5905,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -6401,7 +6401,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -6756,7 +6756,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -7270,7 +7270,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -9561,7 +9561,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -9667,7 +9667,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -9816,7 +9816,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -14731,7 +14731,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -15576,7 +15576,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -16139,7 +16139,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -16272,7 +16272,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -16316,7 +16316,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -16942,7 +16942,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -17033,7 +17033,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -17329,7 +17329,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/OBBGeometry.html b/docs/classes/OBBGeometry.html index 428b85405..e18364f7c 100644 --- a/docs/classes/OBBGeometry.html +++ b/docs/classes/OBBGeometry.html @@ -796,7 +796,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -894,7 +894,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -963,7 +963,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1067,7 +1067,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1195,7 +1195,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1302,7 +1302,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1418,7 +1418,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1510,7 +1510,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1616,7 +1616,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1765,7 +1765,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1889,7 +1889,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1969,7 +1969,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2013,7 +2013,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2055,7 +2055,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2099,7 +2099,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2144,7 +2144,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2188,7 +2188,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2386,7 +2386,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/OBJModel.html b/docs/classes/OBJModel.html index f73ee1f7a..76cdc032e 100644 --- a/docs/classes/OBJModel.html +++ b/docs/classes/OBJModel.html @@ -1595,7 +1595,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1693,7 +1693,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1762,7 +1762,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1866,7 +1866,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1994,7 +1994,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2101,7 +2101,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2356,7 +2356,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2621,7 +2621,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2727,7 +2727,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2876,7 +2876,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -4022,7 +4022,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -4675,7 +4675,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -5179,7 +5179,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -5309,7 +5309,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -5353,7 +5353,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -5968,7 +5968,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -6108,7 +6108,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -6401,7 +6401,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Object.html b/docs/classes/Object.html index f435a158b..83a4155d6 100644 --- a/docs/classes/Object.html +++ b/docs/classes/Object.html @@ -1751,7 +1751,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1849,7 +1849,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1918,7 +1918,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -2022,7 +2022,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -2150,7 +2150,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2257,7 +2257,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2373,7 +2373,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2465,7 +2465,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2571,7 +2571,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2720,7 +2720,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -3844,7 +3844,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -4446,7 +4446,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -4736,7 +4736,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -4825,7 +4825,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -4869,7 +4869,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -5386,7 +5386,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -5480,7 +5480,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -5729,7 +5729,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Ortho.html b/docs/classes/Ortho.html index 2bb635339..43c654efa 100644 --- a/docs/classes/Ortho.html +++ b/docs/classes/Ortho.html @@ -829,7 +829,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -927,7 +927,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -996,7 +996,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1100,7 +1100,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1228,7 +1228,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1335,7 +1335,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1451,7 +1451,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1543,7 +1543,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1649,7 +1649,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1798,7 +1798,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1922,7 +1922,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2002,7 +2002,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2094,7 +2094,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2184,7 +2184,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2228,7 +2228,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2370,7 +2370,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2414,7 +2414,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2519,7 +2519,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/OutlineMaterial.html b/docs/classes/OutlineMaterial.html index 45a97e700..1064b20c3 100644 --- a/docs/classes/OutlineMaterial.html +++ b/docs/classes/OutlineMaterial.html @@ -771,7 +771,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -869,7 +869,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -938,7 +938,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1042,7 +1042,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1170,7 +1170,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1277,7 +1277,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1393,7 +1393,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1485,7 +1485,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1591,7 +1591,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1740,7 +1740,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1864,7 +1864,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2039,7 +2039,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2083,7 +2083,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2125,7 +2125,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2169,7 +2169,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2214,7 +2214,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2258,7 +2258,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2410,7 +2410,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/PathGeometry.html b/docs/classes/PathGeometry.html index c43c69894..b0a66a7f0 100644 --- a/docs/classes/PathGeometry.html +++ b/docs/classes/PathGeometry.html @@ -677,7 +677,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -775,7 +775,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -844,7 +844,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -948,7 +948,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1076,7 +1076,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1183,7 +1183,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1299,7 +1299,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1391,7 +1391,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1497,7 +1497,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1646,7 +1646,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1770,7 +1770,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1989,7 +1989,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2080,7 +2080,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2170,7 +2170,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2214,7 +2214,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2532,7 +2532,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2576,7 +2576,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2768,7 +2768,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Perspective.html b/docs/classes/Perspective.html index 34b033d73..532d52ea4 100644 --- a/docs/classes/Perspective.html +++ b/docs/classes/Perspective.html @@ -853,7 +853,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -951,7 +951,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1020,7 +1020,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1124,7 +1124,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1252,7 +1252,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1359,7 +1359,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1475,7 +1475,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1567,7 +1567,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1673,7 +1673,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1822,7 +1822,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1946,7 +1946,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2026,7 +2026,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2215,7 +2215,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2305,7 +2305,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2349,7 +2349,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2442,7 +2442,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2486,7 +2486,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2591,7 +2591,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/PhongMaterial.html b/docs/classes/PhongMaterial.html index 8f6e9027a..571c60fc5 100644 --- a/docs/classes/PhongMaterial.html +++ b/docs/classes/PhongMaterial.html @@ -1595,7 +1595,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1693,7 +1693,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1762,7 +1762,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1866,7 +1866,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1994,7 +1994,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2101,7 +2101,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2217,7 +2217,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2309,7 +2309,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2415,7 +2415,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2564,7 +2564,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2688,7 +2688,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -3172,7 +3172,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -3561,7 +3561,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -3650,7 +3650,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -3694,7 +3694,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -4033,7 +4033,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -4275,7 +4275,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -4380,7 +4380,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Pin.html b/docs/classes/Pin.html index ceece10d3..ad875b104 100644 --- a/docs/classes/Pin.html +++ b/docs/classes/Pin.html @@ -987,7 +987,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1085,7 +1085,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1154,7 +1154,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1258,7 +1258,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1386,7 +1386,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1493,7 +1493,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1609,7 +1609,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1701,7 +1701,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1807,7 +1807,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1956,7 +1956,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2080,7 +2080,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2259,7 +2259,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2303,7 +2303,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2445,7 +2445,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2489,7 +2489,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2685,7 +2685,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2729,7 +2729,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2778,7 +2778,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -3107,7 +3107,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/PlaneGeometry.html b/docs/classes/PlaneGeometry.html index d8d1335c0..7fb83ac31 100644 --- a/docs/classes/PlaneGeometry.html +++ b/docs/classes/PlaneGeometry.html @@ -904,7 +904,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1002,7 +1002,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1071,7 +1071,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1175,7 +1175,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1303,7 +1303,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1410,7 +1410,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1526,7 +1526,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1618,7 +1618,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1724,7 +1724,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1873,7 +1873,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1997,7 +1997,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2216,7 +2216,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2260,7 +2260,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2350,7 +2350,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2394,7 +2394,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2667,7 +2667,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2711,7 +2711,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2903,7 +2903,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/PointLight.html b/docs/classes/PointLight.html index a5ed00f54..3a3d72584 100644 --- a/docs/classes/PointLight.html +++ b/docs/classes/PointLight.html @@ -943,7 +943,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1041,7 +1041,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1110,7 +1110,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1214,7 +1214,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1342,7 +1342,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1449,7 +1449,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1565,7 +1565,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1657,7 +1657,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1763,7 +1763,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1912,7 +1912,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2036,7 +2036,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2210,7 +2210,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2254,7 +2254,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2390,7 +2390,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2434,7 +2434,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2574,7 +2574,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2665,7 +2665,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2770,7 +2770,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/QuadraticBezierCurve.html b/docs/classes/QuadraticBezierCurve.html index 26aec4977..1a3c547ca 100644 --- a/docs/classes/QuadraticBezierCurve.html +++ b/docs/classes/QuadraticBezierCurve.html @@ -930,7 +930,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1028,7 +1028,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1097,7 +1097,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1201,7 +1201,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1653,7 +1653,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1760,7 +1760,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1876,7 +1876,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1968,7 +1968,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2074,7 +2074,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2223,7 +2223,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2347,7 +2347,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2427,7 +2427,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2471,7 +2471,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2555,7 +2555,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2599,7 +2599,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2689,7 +2689,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2733,7 +2733,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2873,7 +2873,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -3070,7 +3070,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/ReflectionMap.html b/docs/classes/ReflectionMap.html index 088468c34..6511abf1f 100644 --- a/docs/classes/ReflectionMap.html +++ b/docs/classes/ReflectionMap.html @@ -760,7 +760,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -858,7 +858,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -927,7 +927,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1031,7 +1031,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1159,7 +1159,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1266,7 +1266,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1382,7 +1382,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1474,7 +1474,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1580,7 +1580,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1729,7 +1729,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1853,7 +1853,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1933,7 +1933,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -1977,7 +1977,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2019,7 +2019,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2063,7 +2063,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2108,7 +2108,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2152,7 +2152,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2257,7 +2257,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/STLModel.html b/docs/classes/STLModel.html index 0e61df5a2..132fd8101 100644 --- a/docs/classes/STLModel.html +++ b/docs/classes/STLModel.html @@ -1802,7 +1802,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1900,7 +1900,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1969,7 +1969,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -2073,7 +2073,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -2201,7 +2201,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2308,7 +2308,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2608,7 +2608,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2873,7 +2873,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2979,7 +2979,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -3128,7 +3128,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -4285,7 +4285,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -4938,7 +4938,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -5442,7 +5442,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -5572,7 +5572,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -5616,7 +5616,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -6231,7 +6231,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -6370,7 +6370,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -6663,7 +6663,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Scene.html b/docs/classes/Scene.html index dc420d365..1f5dcc68c 100644 --- a/docs/classes/Scene.html +++ b/docs/classes/Scene.html @@ -1563,7 +1563,7 @@

    clear

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2221 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2213

    @@ -1622,7 +1622,7 @@

    clearClips

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2259 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2249

    @@ -1680,7 +1680,7 @@

    clearLights

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2244 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2234

    @@ -1751,7 +1751,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1849,7 +1849,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1918,7 +1918,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -2022,7 +2022,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -2153,7 +2153,7 @@

    getAABB

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2140 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2132

    @@ -2270,7 +2270,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -2377,7 +2377,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2493,7 +2493,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2585,7 +2585,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2691,7 +2691,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2840,7 +2840,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2971,7 +2971,7 @@

    pick

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1800 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1793

    @@ -3079,21 +3079,6 @@

    Parameters:

    - - -
  • - - [pickTransparent=true] - Boolean - optional - - -
    -

    Whether to pick transparent objects (true) or pick through them as if they did not exist (false).

    - -
    - -
  • @@ -3350,7 +3335,7 @@

    setColorize

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2415 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2405

    @@ -3469,7 +3454,7 @@

    setEdges

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2377 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2367

    @@ -3601,7 +3586,7 @@

    setGhosted

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2355 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2345

    @@ -3737,7 +3722,7 @@

    setHighlighted

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2333 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2323

    @@ -3869,7 +3854,7 @@

    setOpacity

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2428 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2418

    @@ -3988,7 +3973,7 @@

    setOutlined

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2393 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2383

    @@ -4124,7 +4109,7 @@

    setPickable

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2441 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2431

    @@ -4257,7 +4242,7 @@

    setSelected

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2311 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2301

    @@ -4393,7 +4378,7 @@

    setVisible

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2293 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2283

    @@ -4526,7 +4511,7 @@

    setVisible

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2271 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2261

    @@ -4649,7 +4634,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -4750,7 +4735,7 @@

    withObjects

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2459 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:2449

    @@ -4848,7 +4833,7 @@

    aabb

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1731 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1724

    @@ -4897,7 +4882,7 @@

    camera

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1700 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1693

    @@ -4991,7 +4976,7 @@

    center

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1711 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1704

    @@ -5175,7 +5160,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -5222,7 +5207,7 @@

    edgeMaterial

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1643 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1638

    @@ -5800,7 +5785,7 @@

    ghostMaterial

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1577 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1575

    @@ -5997,7 +5982,7 @@

    highlightMaterial

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1599 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1596

    @@ -6046,7 +6031,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -6282,7 +6267,7 @@

    material

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1555 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1554

    @@ -6376,7 +6361,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -6420,7 +6405,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -6562,7 +6547,7 @@

    outlineMaterial

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1668 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1662

    @@ -6752,7 +6737,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -6895,7 +6880,7 @@

    selectedMaterial

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1621 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1617

    @@ -6944,7 +6929,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -7186,7 +7171,7 @@

    viewport

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1689 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/scene.js:1682

    @@ -7334,7 +7319,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/SceneJSModel.html b/docs/classes/SceneJSModel.html index 595d56821..b05dd0aad 100644 --- a/docs/classes/SceneJSModel.html +++ b/docs/classes/SceneJSModel.html @@ -1120,7 +1120,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1218,7 +1218,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1287,7 +1287,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1391,7 +1391,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1519,7 +1519,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1626,7 +1626,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1742,7 +1742,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1834,7 +1834,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1940,7 +1940,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2089,7 +2089,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2213,7 +2213,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2479,7 +2479,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2523,7 +2523,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2661,7 +2661,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2705,7 +2705,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2978,7 +2978,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -3069,7 +3069,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -3329,7 +3329,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Shadow.html b/docs/classes/Shadow.html index a81d73116..6525fead2 100644 --- a/docs/classes/Shadow.html +++ b/docs/classes/Shadow.html @@ -800,7 +800,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -898,7 +898,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -967,7 +967,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1071,7 +1071,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1199,7 +1199,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1306,7 +1306,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1422,7 +1422,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1514,7 +1514,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1620,7 +1620,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1769,7 +1769,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1893,7 +1893,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1973,7 +1973,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2017,7 +2017,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2107,7 +2107,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2151,7 +2151,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2245,7 +2245,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2289,7 +2289,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2394,7 +2394,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Skybox.html b/docs/classes/Skybox.html index 919158b30..14b8ad3ec 100644 --- a/docs/classes/Skybox.html +++ b/docs/classes/Skybox.html @@ -846,7 +846,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -944,7 +944,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1013,7 +1013,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1117,7 +1117,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1245,7 +1245,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1352,7 +1352,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1468,7 +1468,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1560,7 +1560,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1666,7 +1666,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1815,7 +1815,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1939,7 +1939,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2067,7 +2067,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2111,7 +2111,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2153,7 +2153,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2197,7 +2197,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2242,7 +2242,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2334,7 +2334,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2383,7 +2383,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -2504,7 +2504,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/SpecularMaterial.html b/docs/classes/SpecularMaterial.html index dc701d4e5..c7cc46c5b 100644 --- a/docs/classes/SpecularMaterial.html +++ b/docs/classes/SpecularMaterial.html @@ -1484,7 +1484,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1582,7 +1582,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1651,7 +1651,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1755,7 +1755,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1883,7 +1883,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1990,7 +1990,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2106,7 +2106,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2198,7 +2198,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2304,7 +2304,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2453,7 +2453,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2577,7 +2577,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2915,7 +2915,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -3306,7 +3306,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -3395,7 +3395,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -3439,7 +3439,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -3630,7 +3630,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -3871,7 +3871,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -3976,7 +3976,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/SphereGeometry.html b/docs/classes/SphereGeometry.html index a583e44e3..2a1b6eb88 100644 --- a/docs/classes/SphereGeometry.html +++ b/docs/classes/SphereGeometry.html @@ -893,7 +893,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -991,7 +991,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1060,7 +1060,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1164,7 +1164,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1292,7 +1292,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1399,7 +1399,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1515,7 +1515,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1607,7 +1607,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1713,7 +1713,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1862,7 +1862,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1986,7 +1986,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2205,7 +2205,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2249,7 +2249,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2339,7 +2339,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2383,7 +2383,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2656,7 +2656,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2700,7 +2700,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2892,7 +2892,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Spinner.html b/docs/classes/Spinner.html index e91cbd323..192fe3864 100644 --- a/docs/classes/Spinner.html +++ b/docs/classes/Spinner.html @@ -610,7 +610,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -708,7 +708,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -777,7 +777,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -881,7 +881,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1009,7 +1009,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1116,7 +1116,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1232,7 +1232,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1324,7 +1324,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1430,7 +1430,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1579,7 +1579,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1703,7 +1703,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1783,7 +1783,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -1827,7 +1827,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -1869,7 +1869,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -1913,7 +1913,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2010,7 +2010,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2054,7 +2054,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2159,7 +2159,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/SplineCurve.html b/docs/classes/SplineCurve.html index 2ce9f9869..3dc7749a6 100644 --- a/docs/classes/SplineCurve.html +++ b/docs/classes/SplineCurve.html @@ -873,7 +873,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -971,7 +971,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1040,7 +1040,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1144,7 +1144,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1596,7 +1596,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1703,7 +1703,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1819,7 +1819,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1911,7 +1911,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2017,7 +2017,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2166,7 +2166,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2290,7 +2290,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2370,7 +2370,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2414,7 +2414,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2498,7 +2498,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2542,7 +2542,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2680,7 +2680,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2724,7 +2724,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2864,7 +2864,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -2917,7 +2917,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/SplineCurveHelper.html b/docs/classes/SplineCurveHelper.html index 00498b0ef..ccb71facf 100644 --- a/docs/classes/SplineCurveHelper.html +++ b/docs/classes/SplineCurveHelper.html @@ -557,7 +557,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -655,7 +655,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -724,7 +724,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -828,7 +828,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -956,7 +956,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1063,7 +1063,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1179,7 +1179,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1271,7 +1271,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1377,7 +1377,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1526,7 +1526,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1650,7 +1650,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1730,7 +1730,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -1774,7 +1774,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -1816,7 +1816,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -1860,7 +1860,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -1905,7 +1905,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -1996,7 +1996,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2045,7 +2045,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -2098,7 +2098,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/SpotLight.html b/docs/classes/SpotLight.html index d6c94fd01..926417258 100644 --- a/docs/classes/SpotLight.html +++ b/docs/classes/SpotLight.html @@ -970,7 +970,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1068,7 +1068,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1137,7 +1137,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1241,7 +1241,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1369,7 +1369,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1476,7 +1476,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1592,7 +1592,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1684,7 +1684,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1790,7 +1790,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1939,7 +1939,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2063,7 +2063,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2237,7 +2237,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2328,7 +2328,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2465,7 +2465,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2509,7 +2509,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2649,7 +2649,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2740,7 +2740,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2845,7 +2845,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/StereoEffect.html b/docs/classes/StereoEffect.html index f0f0586d6..37e347a47 100644 --- a/docs/classes/StereoEffect.html +++ b/docs/classes/StereoEffect.html @@ -1127,7 +1127,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1225,7 +1225,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1294,7 +1294,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1398,7 +1398,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1526,7 +1526,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1633,7 +1633,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1749,7 +1749,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1841,7 +1841,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1947,7 +1947,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2096,7 +2096,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2926,7 +2926,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -3611,7 +3611,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -4119,7 +4119,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -4295,7 +4295,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -4339,7 +4339,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -4881,7 +4881,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -5066,7 +5066,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -5355,7 +5355,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Story.html b/docs/classes/Story.html index 7ea1a7838..6a946bded 100644 --- a/docs/classes/Story.html +++ b/docs/classes/Story.html @@ -726,7 +726,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -824,7 +824,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -893,7 +893,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -997,7 +997,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1125,7 +1125,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1232,7 +1232,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1348,7 +1348,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1440,7 +1440,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1546,7 +1546,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1695,7 +1695,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1819,7 +1819,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -1899,7 +1899,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -1943,7 +1943,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -1985,7 +1985,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2029,7 +2029,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2074,7 +2074,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2118,7 +2118,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2167,7 +2167,7 @@

    type

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:231 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:230

    @@ -2220,7 +2220,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/TeapotGeometry.html b/docs/classes/TeapotGeometry.html index 250c9db1a..c60995b66 100644 --- a/docs/classes/TeapotGeometry.html +++ b/docs/classes/TeapotGeometry.html @@ -810,7 +810,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -908,7 +908,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -977,7 +977,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1081,7 +1081,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1209,7 +1209,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1316,7 +1316,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1432,7 +1432,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1524,7 +1524,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1630,7 +1630,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1779,7 +1779,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1903,7 +1903,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2122,7 +2122,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2166,7 +2166,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2256,7 +2256,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2300,7 +2300,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2573,7 +2573,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2617,7 +2617,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2809,7 +2809,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/TestModel.html b/docs/classes/TestModel.html index bcddd401d..0d4d810a7 100644 --- a/docs/classes/TestModel.html +++ b/docs/classes/TestModel.html @@ -1397,7 +1397,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1495,7 +1495,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1564,7 +1564,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1668,7 +1668,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1796,7 +1796,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1903,7 +1903,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -2019,7 +2019,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -2284,7 +2284,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -2390,7 +2390,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -2539,7 +2539,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -3523,7 +3523,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -4176,7 +4176,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -4680,7 +4680,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -4810,7 +4810,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -4854,7 +4854,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -5469,7 +5469,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -5560,7 +5560,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -5853,7 +5853,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Texture.html b/docs/classes/Texture.html index d9ee6b2fe..ca0559582 100644 --- a/docs/classes/Texture.html +++ b/docs/classes/Texture.html @@ -989,7 +989,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1087,7 +1087,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1156,7 +1156,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1260,7 +1260,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1388,7 +1388,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1495,7 +1495,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1611,7 +1611,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1703,7 +1703,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1809,7 +1809,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1958,7 +1958,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2082,7 +2082,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2162,7 +2162,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2300,7 +2300,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2446,7 +2446,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2569,7 +2569,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2708,7 +2708,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2800,7 +2800,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -3068,7 +3068,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/TorusGeometry.html b/docs/classes/TorusGeometry.html index 5e6e72fdc..e103928dd 100644 --- a/docs/classes/TorusGeometry.html +++ b/docs/classes/TorusGeometry.html @@ -926,7 +926,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -1024,7 +1024,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1093,7 +1093,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1197,7 +1197,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1325,7 +1325,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1432,7 +1432,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1548,7 +1548,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1640,7 +1640,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1746,7 +1746,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1895,7 +1895,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -2019,7 +2019,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2238,7 +2238,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2282,7 +2282,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2372,7 +2372,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2416,7 +2416,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2689,7 +2689,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2733,7 +2733,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2925,7 +2925,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/VectorTextGeometry.html b/docs/classes/VectorTextGeometry.html index 7de005d37..d5b66a128 100644 --- a/docs/classes/VectorTextGeometry.html +++ b/docs/classes/VectorTextGeometry.html @@ -850,7 +850,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -948,7 +948,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -1017,7 +1017,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1121,7 +1121,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1249,7 +1249,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1356,7 +1356,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1472,7 +1472,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1564,7 +1564,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1670,7 +1670,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1819,7 +1819,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1943,7 +1943,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2162,7 +2162,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2206,7 +2206,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2296,7 +2296,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2340,7 +2340,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2613,7 +2613,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2657,7 +2657,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2849,7 +2849,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/Viewport.html b/docs/classes/Viewport.html index 5ff5efd73..b5d0c528c 100644 --- a/docs/classes/Viewport.html +++ b/docs/classes/Viewport.html @@ -814,7 +814,7 @@

    create

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:920 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:919

    @@ -912,7 +912,7 @@

    destroy

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1029 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1028

    @@ -981,7 +981,7 @@

    error

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:607 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:606

    @@ -1085,7 +1085,7 @@

    fire

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:431 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:430

    @@ -1213,7 +1213,7 @@

    hasSubs

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:558 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:557

    @@ -1320,7 +1320,7 @@

    isType

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:395 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:394

    @@ -1436,7 +1436,7 @@

    log

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:569 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:568

    @@ -1528,7 +1528,7 @@

    off

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:512 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:511

    @@ -1634,7 +1634,7 @@

    on

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:470 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:469

    @@ -1783,7 +1783,7 @@

    once

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:537 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:536

    @@ -1907,7 +1907,7 @@

    warn

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:590 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:589

    @@ -2090,7 +2090,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:319 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:318

    @@ -2134,7 +2134,7 @@

    id

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:310 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:309

    @@ -2176,7 +2176,7 @@

    metadata

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:302 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:301

    @@ -2220,7 +2220,7 @@

    model

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:382 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:381

    @@ -2265,7 +2265,7 @@

    scene

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:253 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:252

    @@ -2309,7 +2309,7 @@

    superTypes

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:353 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:352

    @@ -2618,7 +2618,7 @@

    destroyed

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1097 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/component.js:1096

    diff --git a/docs/classes/xeogl.xeogl.html b/docs/classes/xeogl.xeogl.html index 8c48bc0b8..5077c76f9 100644 --- a/docs/classes/xeogl.xeogl.html +++ b/docs/classes/xeogl.xeogl.html @@ -1021,7 +1021,7 @@

    tick

    - /home/lindsay/xeolabs/xeogl-next/xeogl/src/loop.js:61 + /home/lindsay/xeolabs/xeogl-next/xeogl/src/loop.js:58

    diff --git a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_examples_js_models_glTFModel.js.html b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_examples_js_models_glTFModel.js.html index 3fb6f1928..1fd09989c 100644 --- a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_examples_js_models_glTFModel.js.html +++ b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_examples_js_models_glTFModel.js.html @@ -1121,7 +1121,7 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/examples/j function loadTexture(ctx, textureInfo) { var texture = new xeogl.Texture(ctx.scene, { - src: ctx.basePath + ctx.json.images[textureInfo.source].uri, + src: ctx.json.images[textureInfo.source].uri ? ctx.basePath + ctx.json.images[textureInfo.source].uri : undefined, flipY: !!textureInfo.flipY }); ctx.model._addComponent(texture); diff --git a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_component.js.html b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_component.js.html index 5d7ef5106..0e7bb20e5 100644 --- a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_component.js.html +++ b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_component.js.html @@ -502,7 +502,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/compon @param [cfg] {*} DepthBuf configuration @param [cfg.id] {String} Optional ID, unique among all components in the parent {{#crossLink "Scene"}}Scene{{/crossLink}}, generated automatically when omitted. @param [cfg.meta] {String:Object} Optional map of user-defined metadata to attach to this Component. - @param [cfg.isDefault] {Boolean} Set true when this is one of xeogl's default components. */ import {core} from "./core.js"; @@ -581,7 +580,7 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/compon this._renderer = this.scene._renderer; } - this._dontClear = !!cfg.dontClear; + this._dontClear = !!cfg.dontClear; // Prevent Scene#clear from destroying this component this._model = null; this._renderer = this.scene._renderer; diff --git a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_loop.js.html b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_loop.js.html index a89d41ad0..27a68896f 100644 --- a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_loop.js.html +++ b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_loop.js.html @@ -306,26 +306,23 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/loop.j let lastTime = 0; let elapsedTime; let totalFPS = 0; -let suspended = false; const frame = function () { - if (!suspended) { - let time = Date.now(); - if (lastTime > 0) { // Log FPS stats - elapsedTime = time - lastTime; - var newFPS = 1000 / elapsedTime; // Moving average of FPS - totalFPS += newFPS; - fpsSamples.push(newFPS); - if (fpsSamples.length >= numFPSSamples) { - totalFPS -= fpsSamples.shift(); - } - stats.frame.fps = Math.round(totalFPS / fpsSamples.length); + let time = Date.now(); + if (lastTime > 0) { // Log FPS stats + elapsedTime = time - lastTime; + var newFPS = 1000 / elapsedTime; // Moving average of FPS + totalFPS += newFPS; + fpsSamples.push(newFPS); + if (fpsSamples.length >= numFPSSamples) { + totalFPS -= fpsSamples.shift(); } - runTasks(time); - fireTickEvents(time); - renderScenes(); - lastTime = time; + stats.frame.fps = Math.round(totalFPS / fpsSamples.length); } + runTasks(time); + fireTickEvents(time); + renderScenes(); + lastTime = time; window.requestAnimationFrame(frame); }; @@ -390,15 +387,7 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/loop.j window.requestAnimationFrame(frame); -const loop = { - suspend() { - suspended = true; - }, - - resume() { - suspended = false; - } -}; +const loop = {}; export{loop}; diff --git a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_renderer_renderer.js.html b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_renderer_renderer.js.html index 231b785ba..cdee7600b 100644 --- a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_renderer_renderer.js.html +++ b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_renderer_renderer.js.html @@ -1108,18 +1108,14 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/render let i; let len; let mesh; - const pickTransparent = !!params.pickTransparent; - const includeMeshIds = !!params.includeMeshIds; - const excludeMeshIds = !!params.excludeMeshIds; + const includeMeshIds = params.includeMeshIds; + const excludeMeshIds = params.excludeMeshIds; for (i = 0, len = meshListLen; i < len; i++) { mesh = meshList[i]; if (mesh._state.culled === true || mesh._state.visible === false || mesh._state.pickable === false) { continue; } - if (!pickTransparent && mesh._material._state.alpha < 0) { - continue; - } if (includeMeshIds && !includeMeshIds[mesh.id]) { continue; } diff --git a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_scene_scene.js.html b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_scene_scene.js.html index ed89d07af..5e571f0a1 100644 --- a/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_scene_scene.js.html +++ b/docs/files/_home_lindsay_xeolabs_xeogl-next_xeogl_src_scene_scene.js.html @@ -1834,7 +1834,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ return this.components["default.geometry"] || new BoxGeometry(this, { id: "default.geometry", - isDefault: true, dontClear: true }); } @@ -1855,7 +1854,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ get material() { return this.components["default.material"] || new PhongMaterial(this, { id: "default.material", - isDefault: true, emissive: [0.4, 0.4, 0.4], // Visible by default on geometry without normals dontClear: true }); @@ -1878,7 +1876,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ return this.components["default.ghostMaterial"] || new EmphasisMaterial(this, { id: "default.ghostMaterial", preset: "sepia", - isDefault: true, dontClear: true }); } @@ -1900,7 +1897,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ return this.components["default.highlightMaterial"] || new EmphasisMaterial(this, { id: "default.highlightMaterial", preset: "yellowHighlight", - isDefault: true, dontClear: true }); } @@ -1922,7 +1918,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ return this.components["default.selectedMaterial"] || new EmphasisMaterial(this, { id: "default.selectedMaterial", preset: "greenSelected", - isDefault: true, dontClear: true }); } @@ -1947,7 +1942,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ edgeColor: [0.0, 0.0, 0.0], edgeAlpha: 1.0, edgeWidth: 1, - isDefault: true, dontClear: true }); } @@ -1968,7 +1962,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ get outlineMaterial() { return this.components["default.outlineMaterial"] || new OutlineMaterial(this, { id: "default.outlineMaterial", - isDefault: true, dontClear: true }); } @@ -2163,7 +2156,6 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ @param {*} params Picking parameters. @param {Boolean} [params.pickSurface=false] Whether to find the picked position on the surface of the Mesh. - @param {Boolean} [params.pickTransparent=true] Whether to pick transparent objects (true) or pick through them as if they did not exist (false). @param {Float32Array} [params.canvasPos] Canvas-space coordinates. When ray-picking, this will override the **origin** and ** direction** parameters and will cause the ray to be fired through the canvas at this position, directly along the negative View-space Z-axis. @@ -2512,17 +2504,15 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ @method clear */ - clear() { // FIXME: should only clear user-created components + clear() { var component; for (const id in this.components) { if (this.components.hasOwnProperty(id)) { // Each component fires "destroyed" as it is destroyed, // which this Scene handles by removing the component component = this.components[id]; - if (!component._dontClear) { // Don't destroy components like xeogl.Camera, xeogl.Input, xeogl.Viewport + if (!component._dontClear) { // Don't destroy components like xeogl.Camera, xeogl.Input, xeogl.Viewport etc. component.destroy(); - } else { - this.log("Not clearing: " + component.type); } } } @@ -2783,7 +2773,11 @@

    File: /home/lindsay/xeolabs/xeogl-next/xeogl/src/scene/ super.destroy(); - this.clear(); + for (const id in this.components) { + if (this.components.hasOwnProperty(id)) { + this.components[id].destroy(); + } + } this.canvas.gl = null;