123456789101112131415161718192021222324252627282930313233 |
- ---
- properties:
- scene:
- get: |
- if ( !this.scene ) {
- this.scene = this.find( this.scenePath || "/" )[ 0 ];
- }
- return this.scene;
- //@ sourceURL=sceneGetter.scene.get
- scenePath:
- set: |
- if ( value === this.scenePath ) {
- return;
- }
- this.scenePath = value;
- // Nullify the current scene so that next time it is gotten, it will find it from the new path
- this.scene = null;
- //@ sourceURL=sceneGetter.scenePath.set
|