summaryrefslogtreecommitdiff
path: root/main/tests
diff options
context:
space:
mode:
Diffstat (limited to 'main/tests')
-rw-r--r--main/tests/test_gui.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/main/tests/test_gui.cpp b/main/tests/test_gui.cpp
index 3d0b96ae5b..291a557d04 100644
--- a/main/tests/test_gui.cpp
+++ b/main/tests/test_gui.cpp
@@ -53,7 +53,6 @@
#include "scene/main/scene_main_loop.h"
#include "scene/3d/camera.h"
-#include "scene/3d/test_cube.h"
#include "scene/main/viewport.h"
namespace TestGUI {
@@ -87,10 +86,6 @@ public:
vp->add_child(camera);
camera->make_current();
- TestCube *testcube = memnew( TestCube );
- vp->add_child(testcube);
- testcube->set_transform(Transform( Basis().rotated(Vector3(0,1,0),Math_PI*0.25), Vector3(0,0,-8)));
-
Sprite *sp = memnew( Sprite );
sp->set_texture( vp->get_render_target_texture() );
//sp->set_texture( ResourceLoader::load("res://ball.png") );
@@ -375,6 +370,6 @@ MainLoop *test() {
return memnew(TestMainLoop);
}
-}
+} // namespace TestGUI
#endif