diff options
author | Micky <micheledevita2@gmail.com> | 2022-09-01 15:19:23 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2022-09-01 15:38:06 +0200 |
commit | 8949386382320bc1055ee1d8eb3e86dc94c0ad8e (patch) | |
tree | 74e6e102caa291ce4ad68c89f278c2e23bf0e9e6 /scene/resources/texture.h | |
parent | 728785d5328172acd4cc4b182914aea5d234fea4 (diff) | |
download | redot-engine-8949386382320bc1055ee1d8eb3e86dc94c0ad8e.tar.gz |
Rename AnimatedTexture `oneshot` to `one_shot`
AnimatedTexture.`oneshot` -> `one_shot`
For consistency. Every other exposed `one_shot` is spaced out like this.
Diffstat (limited to 'scene/resources/texture.h')
-rw-r--r-- | scene/resources/texture.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scene/resources/texture.h b/scene/resources/texture.h index 133b312d27..16c2afe332 100644 --- a/scene/resources/texture.h +++ b/scene/resources/texture.h @@ -929,7 +929,7 @@ private: int frame_count = 1.0; int current_frame = 0; bool pause = false; - bool oneshot = false; + bool one_shot = false; float fps = 4.0; float time = 0.0; @@ -952,8 +952,8 @@ public: void set_pause(bool p_pause); bool get_pause() const; - void set_oneshot(bool p_oneshot); - bool get_oneshot() const; + void set_one_shot(bool p_one_shot); + bool get_one_shot() const; void set_frame_texture(int p_frame, const Ref<Texture2D> &p_texture); Ref<Texture2D> get_frame_texture(int p_frame) const; |