Can't figure out how to run scene in godotGodot - Changing the sceneHow to make image fit screen in GodotGodot engine not working on macHow to add multiple instances of a 3D scene in Godot 3?How to resized button in godotHow to load textures from a spritesheet in Godot 3How to export Godot scene for web HTML?Godot - any way to trace signals?How to play AnimationPlayer in script once. Godot EngineGodot - How to use the VideoPlayer node to play .ogv files

Can a UA Lore Mastery wizard use the Spell Secrets or Alchemical Casting features to modify spells cast through wands or staffs?

what is the relation of guitar chords to actual notes in the measure

Is there a formal/better word than "skyrocket" for the given context?

Strong Password Detection in Python

Party going through airport security at separate times?

How does Kaya's Ghostform interact with Elenda, the Dusk Rose?

Can you cast the Shape Water spell without an existing obvious pool of water?

Simple sharding of delimited files to more sophisticated

Was it ever illegal to name a pig "Napoleon" in France?

Why do airports remove/realign runways?

Intern not wearing safety equipment; how could I have handled this differently?

Password Hashing Security Using Scrypt & Argon2

Moving millions of files to a different directory with specfic name patterns

zoom set to 4 but on get zoom shows zero ,OpenLayers

Is it possible to complete a PhD in CS in 3 years?

What was the nature of the known bugs in the Space Shuttle software?

What are the consequences for a developed nation to not accept any refugees?

Write a function

Why did Dumbledore ignore this line?

US citizen traveling with Peruvian passport

How do I separate enchants from items?

This LM317 diagram doesn't make any sense to me

My previous employer committed a severe violation of the law and is also being sued by me. How do I explain the situation to future employers?

Why was such an unrevealing title originally chosen and then changed for some International markets?



Can't figure out how to run scene in godot


Godot - Changing the sceneHow to make image fit screen in GodotGodot engine not working on macHow to add multiple instances of a 3D scene in Godot 3?How to resized button in godotHow to load textures from a spritesheet in Godot 3How to export Godot scene for web HTML?Godot - any way to trace signals?How to play AnimationPlayer in script once. Godot EngineGodot - How to use the VideoPlayer node to play .ogv files






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm very new to godot and was following the step by step tutorial on the godot website. I have godot 3.1 .



I made a script node that says "hello world" and tried to run the scene like the tutorial said, but nothing appears. I'm not sure how to put the code into this question since godot has a workspace and stuff and isn't a text editor. It's very simple though, just the script node with the text value changed.



I've tried searching up this problem and other people seem to get some error message when their scene doesn't run, but I don't get any error. I get this on my output though:



** Debug Process Started **
OpenGL ES 3.0 Renderer: Intel(R) UHD Graphics 620



I'd really appreciate any help to get the scene to run, I'm looking forward to learning to make games in godot. :)










share|improve this question




























    0















    I'm very new to godot and was following the step by step tutorial on the godot website. I have godot 3.1 .



    I made a script node that says "hello world" and tried to run the scene like the tutorial said, but nothing appears. I'm not sure how to put the code into this question since godot has a workspace and stuff and isn't a text editor. It's very simple though, just the script node with the text value changed.



    I've tried searching up this problem and other people seem to get some error message when their scene doesn't run, but I don't get any error. I get this on my output though:



    ** Debug Process Started **
    OpenGL ES 3.0 Renderer: Intel(R) UHD Graphics 620



    I'd really appreciate any help to get the scene to run, I'm looking forward to learning to make games in godot. :)










    share|improve this question
























      0












      0








      0








      I'm very new to godot and was following the step by step tutorial on the godot website. I have godot 3.1 .



      I made a script node that says "hello world" and tried to run the scene like the tutorial said, but nothing appears. I'm not sure how to put the code into this question since godot has a workspace and stuff and isn't a text editor. It's very simple though, just the script node with the text value changed.



      I've tried searching up this problem and other people seem to get some error message when their scene doesn't run, but I don't get any error. I get this on my output though:



      ** Debug Process Started **
      OpenGL ES 3.0 Renderer: Intel(R) UHD Graphics 620



      I'd really appreciate any help to get the scene to run, I'm looking forward to learning to make games in godot. :)










      share|improve this question














      I'm very new to godot and was following the step by step tutorial on the godot website. I have godot 3.1 .



      I made a script node that says "hello world" and tried to run the scene like the tutorial said, but nothing appears. I'm not sure how to put the code into this question since godot has a workspace and stuff and isn't a text editor. It's very simple though, just the script node with the text value changed.



      I've tried searching up this problem and other people seem to get some error message when their scene doesn't run, but I don't get any error. I get this on my output though:



      ** Debug Process Started **
      OpenGL ES 3.0 Renderer: Intel(R) UHD Graphics 620



      I'd really appreciate any help to get the scene to run, I'm looking forward to learning to make games in godot. :)







      godot






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 23:13









      VanillaVanilla

      1




      1






















          2 Answers
          2






          active

          oldest

          votes


















          1














          Let's start from scratch:



          • 1) Scene -> New Scene


          • 2) On your scene tab, create a Node2D as root (by clicking the plus + sign and selecting Node2D).
            Scene with Node2D as root


          • 3) Create a new script by clicking
            Add script icon


          This will generate an empty script:



          extends Node2D

          # class member variables go here, for example:
          # var a = 2
          # var b = "textvar"

          func _ready():
          # Called when the node is added to the scene for the first time.
          # Initialization here
          pass

          #func _process(delta):
          # # Called every frame. Delta is time since last frame.
          # # Update game logic here.
          # pass




          • 4) Save the scene. Now you have a scene with a root node and a script attached to its lifecycle.

          • 5) Run the current scene by clicking enter image description here on the top-right.

          • 6) A black window should appear. From now on, you have a scene you can run and a script where you can add your code.

          For a complete introduction from zero, you can check out the tutorials from KidsCanCode






          share|improve this answer























          • Thank you so much for answering but I'm still having some trouble. I have tried what you said in your answer as well as what the KidsCanCode website said on their website, but the scene doesn't run properly. When I press to run the scene, I can see on my taskbar that another window has opened, but when I click on that window it is completely invisible. There is not even that little bar on the top or anything. Do you think there is something wrong with my computer if it is doing this?

            – Vanilla
            Mar 31 at 0:04











          • I downloaded godot on my friend's PC and it works perfect! There's probably something wrong with my laptop, then. I'll keep practicing on PC, the KidsCanCode tutorials are really nice and simple to follow. :)

            – Vanilla
            Mar 31 at 4:09


















          0














          Probably your graphics card has poor support for OpenGL 3. You could try and change to OpenGL 2 on Project settings > Rendering > Quality > Driver






          share|improve this answer

























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347718%2fcant-figure-out-how-to-run-scene-in-godot%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Let's start from scratch:



            • 1) Scene -> New Scene


            • 2) On your scene tab, create a Node2D as root (by clicking the plus + sign and selecting Node2D).
              Scene with Node2D as root


            • 3) Create a new script by clicking
              Add script icon


            This will generate an empty script:



            extends Node2D

            # class member variables go here, for example:
            # var a = 2
            # var b = "textvar"

            func _ready():
            # Called when the node is added to the scene for the first time.
            # Initialization here
            pass

            #func _process(delta):
            # # Called every frame. Delta is time since last frame.
            # # Update game logic here.
            # pass




            • 4) Save the scene. Now you have a scene with a root node and a script attached to its lifecycle.

            • 5) Run the current scene by clicking enter image description here on the top-right.

            • 6) A black window should appear. From now on, you have a scene you can run and a script where you can add your code.

            For a complete introduction from zero, you can check out the tutorials from KidsCanCode






            share|improve this answer























            • Thank you so much for answering but I'm still having some trouble. I have tried what you said in your answer as well as what the KidsCanCode website said on their website, but the scene doesn't run properly. When I press to run the scene, I can see on my taskbar that another window has opened, but when I click on that window it is completely invisible. There is not even that little bar on the top or anything. Do you think there is something wrong with my computer if it is doing this?

              – Vanilla
              Mar 31 at 0:04











            • I downloaded godot on my friend's PC and it works perfect! There's probably something wrong with my laptop, then. I'll keep practicing on PC, the KidsCanCode tutorials are really nice and simple to follow. :)

              – Vanilla
              Mar 31 at 4:09















            1














            Let's start from scratch:



            • 1) Scene -> New Scene


            • 2) On your scene tab, create a Node2D as root (by clicking the plus + sign and selecting Node2D).
              Scene with Node2D as root


            • 3) Create a new script by clicking
              Add script icon


            This will generate an empty script:



            extends Node2D

            # class member variables go here, for example:
            # var a = 2
            # var b = "textvar"

            func _ready():
            # Called when the node is added to the scene for the first time.
            # Initialization here
            pass

            #func _process(delta):
            # # Called every frame. Delta is time since last frame.
            # # Update game logic here.
            # pass




            • 4) Save the scene. Now you have a scene with a root node and a script attached to its lifecycle.

            • 5) Run the current scene by clicking enter image description here on the top-right.

            • 6) A black window should appear. From now on, you have a scene you can run and a script where you can add your code.

            For a complete introduction from zero, you can check out the tutorials from KidsCanCode






            share|improve this answer























            • Thank you so much for answering but I'm still having some trouble. I have tried what you said in your answer as well as what the KidsCanCode website said on their website, but the scene doesn't run properly. When I press to run the scene, I can see on my taskbar that another window has opened, but when I click on that window it is completely invisible. There is not even that little bar on the top or anything. Do you think there is something wrong with my computer if it is doing this?

              – Vanilla
              Mar 31 at 0:04











            • I downloaded godot on my friend's PC and it works perfect! There's probably something wrong with my laptop, then. I'll keep practicing on PC, the KidsCanCode tutorials are really nice and simple to follow. :)

              – Vanilla
              Mar 31 at 4:09













            1












            1








            1







            Let's start from scratch:



            • 1) Scene -> New Scene


            • 2) On your scene tab, create a Node2D as root (by clicking the plus + sign and selecting Node2D).
              Scene with Node2D as root


            • 3) Create a new script by clicking
              Add script icon


            This will generate an empty script:



            extends Node2D

            # class member variables go here, for example:
            # var a = 2
            # var b = "textvar"

            func _ready():
            # Called when the node is added to the scene for the first time.
            # Initialization here
            pass

            #func _process(delta):
            # # Called every frame. Delta is time since last frame.
            # # Update game logic here.
            # pass




            • 4) Save the scene. Now you have a scene with a root node and a script attached to its lifecycle.

            • 5) Run the current scene by clicking enter image description here on the top-right.

            • 6) A black window should appear. From now on, you have a scene you can run and a script where you can add your code.

            For a complete introduction from zero, you can check out the tutorials from KidsCanCode






            share|improve this answer













            Let's start from scratch:



            • 1) Scene -> New Scene


            • 2) On your scene tab, create a Node2D as root (by clicking the plus + sign and selecting Node2D).
              Scene with Node2D as root


            • 3) Create a new script by clicking
              Add script icon


            This will generate an empty script:



            extends Node2D

            # class member variables go here, for example:
            # var a = 2
            # var b = "textvar"

            func _ready():
            # Called when the node is added to the scene for the first time.
            # Initialization here
            pass

            #func _process(delta):
            # # Called every frame. Delta is time since last frame.
            # # Update game logic here.
            # pass




            • 4) Save the scene. Now you have a scene with a root node and a script attached to its lifecycle.

            • 5) Run the current scene by clicking enter image description here on the top-right.

            • 6) A black window should appear. From now on, you have a scene you can run and a script where you can add your code.

            For a complete introduction from zero, you can check out the tutorials from KidsCanCode







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 30 at 18:20









            LogainLogain

            3,3951 gold badge19 silver badges29 bronze badges




            3,3951 gold badge19 silver badges29 bronze badges












            • Thank you so much for answering but I'm still having some trouble. I have tried what you said in your answer as well as what the KidsCanCode website said on their website, but the scene doesn't run properly. When I press to run the scene, I can see on my taskbar that another window has opened, but when I click on that window it is completely invisible. There is not even that little bar on the top or anything. Do you think there is something wrong with my computer if it is doing this?

              – Vanilla
              Mar 31 at 0:04











            • I downloaded godot on my friend's PC and it works perfect! There's probably something wrong with my laptop, then. I'll keep practicing on PC, the KidsCanCode tutorials are really nice and simple to follow. :)

              – Vanilla
              Mar 31 at 4:09

















            • Thank you so much for answering but I'm still having some trouble. I have tried what you said in your answer as well as what the KidsCanCode website said on their website, but the scene doesn't run properly. When I press to run the scene, I can see on my taskbar that another window has opened, but when I click on that window it is completely invisible. There is not even that little bar on the top or anything. Do you think there is something wrong with my computer if it is doing this?

              – Vanilla
              Mar 31 at 0:04











            • I downloaded godot on my friend's PC and it works perfect! There's probably something wrong with my laptop, then. I'll keep practicing on PC, the KidsCanCode tutorials are really nice and simple to follow. :)

              – Vanilla
              Mar 31 at 4:09
















            Thank you so much for answering but I'm still having some trouble. I have tried what you said in your answer as well as what the KidsCanCode website said on their website, but the scene doesn't run properly. When I press to run the scene, I can see on my taskbar that another window has opened, but when I click on that window it is completely invisible. There is not even that little bar on the top or anything. Do you think there is something wrong with my computer if it is doing this?

            – Vanilla
            Mar 31 at 0:04





            Thank you so much for answering but I'm still having some trouble. I have tried what you said in your answer as well as what the KidsCanCode website said on their website, but the scene doesn't run properly. When I press to run the scene, I can see on my taskbar that another window has opened, but when I click on that window it is completely invisible. There is not even that little bar on the top or anything. Do you think there is something wrong with my computer if it is doing this?

            – Vanilla
            Mar 31 at 0:04













            I downloaded godot on my friend's PC and it works perfect! There's probably something wrong with my laptop, then. I'll keep practicing on PC, the KidsCanCode tutorials are really nice and simple to follow. :)

            – Vanilla
            Mar 31 at 4:09





            I downloaded godot on my friend's PC and it works perfect! There's probably something wrong with my laptop, then. I'll keep practicing on PC, the KidsCanCode tutorials are really nice and simple to follow. :)

            – Vanilla
            Mar 31 at 4:09













            0














            Probably your graphics card has poor support for OpenGL 3. You could try and change to OpenGL 2 on Project settings > Rendering > Quality > Driver






            share|improve this answer



























              0














              Probably your graphics card has poor support for OpenGL 3. You could try and change to OpenGL 2 on Project settings > Rendering > Quality > Driver






              share|improve this answer

























                0












                0








                0







                Probably your graphics card has poor support for OpenGL 3. You could try and change to OpenGL 2 on Project settings > Rendering > Quality > Driver






                share|improve this answer













                Probably your graphics card has poor support for OpenGL 3. You could try and change to OpenGL 2 on Project settings > Rendering > Quality > Driver







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 7 at 15:35









                Just AnotherProgrammerJust AnotherProgrammer

                263 bronze badges




                263 bronze badges



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55347718%2fcant-figure-out-how-to-run-scene-in-godot%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해