@@ -45,7 +45,7 @@ static GameViewPlugin *_get_game_view_plugin() {
4545
4646extern " C" {
4747
48- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setSuspend (JNIEnv *env, jclass clazz, jboolean enabled) {
48+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_setSuspend (JNIEnv *env, jclass clazz, jboolean enabled) {
4949#ifdef TOOLS_ENABLED
5050 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
5151 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -54,7 +54,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setSuspend
5454#endif
5555}
5656
57- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_nextFrame (JNIEnv *env, jclass clazz) {
57+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_nextFrame (JNIEnv *env, jclass clazz) {
5858#ifdef TOOLS_ENABLED
5959 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
6060 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -63,7 +63,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_nextFrame(
6363#endif
6464}
6565
66- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setNodeType (JNIEnv *env, jclass clazz, jint type) {
66+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_setNodeType (JNIEnv *env, jclass clazz, jint type) {
6767#ifdef TOOLS_ENABLED
6868 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
6969 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -72,7 +72,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setNodeTyp
7272#endif
7373}
7474
75- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setSelectMode (JNIEnv *env, jclass clazz, jint mode) {
75+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_setSelectMode (JNIEnv *env, jclass clazz, jint mode) {
7676#ifdef TOOLS_ENABLED
7777 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
7878 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -81,7 +81,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setSelectM
8181#endif
8282}
8383
84- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setSelectionVisible (JNIEnv *env, jclass clazz, jboolean visible) {
84+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_setSelectionVisible (JNIEnv *env, jclass clazz, jboolean visible) {
8585#ifdef TOOLS_ENABLED
8686 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
8787 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -90,7 +90,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setSelecti
9090#endif
9191}
9292
93- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setCameraOverride (JNIEnv *env, jclass clazz, jboolean enabled) {
93+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_setCameraOverride (JNIEnv *env, jclass clazz, jboolean enabled) {
9494#ifdef TOOLS_ENABLED
9595 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
9696 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -99,7 +99,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setCameraO
9999#endif
100100}
101101
102- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setCameraManipulateMode (JNIEnv *env, jclass clazz, jint mode) {
102+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_setCameraManipulateMode (JNIEnv *env, jclass clazz, jint mode) {
103103#ifdef TOOLS_ENABLED
104104 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
105105 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -108,7 +108,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setCameraM
108108#endif
109109}
110110
111- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_resetCamera2DPosition (JNIEnv *env, jclass clazz) {
111+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_resetCamera2DPosition (JNIEnv *env, jclass clazz) {
112112#ifdef TOOLS_ENABLED
113113 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
114114 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -117,7 +117,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_resetCamer
117117#endif
118118}
119119
120- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_resetCamera3DPosition (JNIEnv *env, jclass clazz) {
120+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_resetCamera3DPosition (JNIEnv *env, jclass clazz) {
121121#ifdef TOOLS_ENABLED
122122 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
123123 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
@@ -126,15 +126,15 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_resetCamer
126126#endif
127127}
128128
129- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_playMainScene (JNIEnv *env, jclass clazz) {
129+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_playMainScene (JNIEnv *env, jclass clazz) {
130130#ifdef TOOLS_ENABLED
131131 if (EditorInterface::get_singleton ()) {
132132 EditorInterface::get_singleton ()->play_main_scene ();
133133 }
134134#endif
135135}
136136
137- JNIEXPORT void JNICALL Java_org_godotengine_godot_utils_GameMenuUtils_setDebugMuteAudio (JNIEnv *env, jclass clazz, jboolean enabled) {
137+ JNIEXPORT void JNICALL Java_org_godotengine_godot_editor_utils_GameMenuUtils_setDebugMuteAudio (JNIEnv *env, jclass clazz, jboolean enabled) {
138138#ifdef TOOLS_ENABLED
139139 GameViewPlugin *game_view_plugin = _get_game_view_plugin ();
140140 if (game_view_plugin != nullptr && game_view_plugin->get_debugger ().is_valid ()) {
0 commit comments