summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-01-02 13:08:28 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-01-02 13:08:28 -0300
commit2e08e111205b3ffc7fc28f0cb80e857dd4bc9640 (patch)
treedd50228bd51e65973ad1903d78a0dee28bef062d /scene
parentaeee764971048cfdd0b20c244c3509a1bcb21344 (diff)
-fixed signal in #1075
Diffstat (limited to 'scene')
-rw-r--r--scene/3d/sprite_3d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/sprite_3d.cpp b/scene/3d/sprite_3d.cpp
index 77f2cf5cc1..35f6523c6a 100644
--- a/scene/3d/sprite_3d.cpp
+++ b/scene/3d/sprite_3d.cpp
@@ -497,7 +497,7 @@ void Sprite3D::set_frame(int p_frame) {
frame=p_frame;
_queue_update();
- ADD_SIGNAL(MethodInfo("frame_changed"));
+ emit_signal(SceneStringNames::get_singleton()->frame_changed);
}