small fix

master
Theunis J. Botha 2021-09-23 20:24:34 +02:00
parent d5a51c46e4
commit a1099c0784
6 changed files with 9 additions and 11 deletions

7
dist/r3.js vendored
View File

@ -1,6 +1,6 @@
class R3 {
static version = '3.0.68';
static compileDate = '2021 Sep 23 - 20:21:29 pm';
static version = '3.0.69';
static compileDate = '2021 Sep 23 - 20:23:57 pm';
}
class Runtime {
@ -3136,7 +3136,6 @@ class EntitySlider extends Entity {
if (this.initialized) {
Event.Emit(Event.SLIDER_ENTITY_INITIALIZED, this);
}
//TODO: stop() entity if it is no longer ready
if (this.initializeDepth === this.maxDepth) {
@ -3144,7 +3143,7 @@ class EntitySlider extends Entity {
this.createInstance();
}
if (this instanceof R3.Entity && this.initialized) {
if (this instanceof R3.Entity && this.initialized && !this.started) {
this.start();
}

View File

@ -1,6 +1,6 @@
{
"name": "r3",
"version" : "3.0.68",
"version" : "3.0.69",
"description": "",
"private": true,
"dependencies": {

View File

@ -364,7 +364,6 @@ class EntitySlider extends Entity {
if (this.initialized) {
Event.Emit(Event.SLIDER_ENTITY_INITIALIZED, this);
}
//TODO: stop() entity if it is no longer ready
//CUSTOM_INITIALIZE_METHOD_END
//GENERATED_INITIALIZE_METHOD_AFTER_START
@ -374,7 +373,7 @@ class EntitySlider extends Entity {
this.createInstance();
}
if (this instanceof R3.Entity && this.initialized) {
if (this instanceof R3.Entity && this.initialized && !this.started) {
this.start();
}

View File

@ -1,6 +1,6 @@
class R3 {
static version = '3.0.68';
static compileDate = '2021 Sep 23 - 20:21:29 pm';
static version = '3.0.69';
static compileDate = '2021 Sep 23 - 20:23:57 pm';
}
//GENERATED_IMPORTS_START

View File

@ -4,7 +4,7 @@
this.createInstance();
}
if (this instanceof R3.Entity && this.initialized) {
if (this instanceof R3.Entity && this.initialized && !this.started) {
this.start();
}

View File

@ -1 +1 @@
3.0.68
3.0.69