Questions tagged [scene]

'scene' can refer to various things. Please combine this tag with other tags to put your question into perspective.

The Scene class is the container for all content in a scene graph.

Within Scenes represent game levels and screens, which are loaded one at a time according to the game mechanics. The scene is a key element in Unity editor and contains the , assets and other game elements.

996 questions
-1
votes
1 answer

Vuforia and Unity multi scene

I have to make an augmented reality book app using Vuforia and Unity. My Android apps size is 108mb. It's not working with 1GB RAM devices. I want to split the scene into different scenes and load the corresponding scene when a specific image target…
-1
votes
1 answer

FXML to open a new scene via button

I am using Scene Builder to create a JavaFX GUI application. I am trying to implement something like this, using FXML: reportButton = new Button("Report"); reportButton.setOnAction(e -> ReportPage.display()); but I can't figure it out how to do…
ToniT
  • 102
  • 8
-1
votes
3 answers

Unity (C#): How do I call a List from a different Scene?

Unity (C#): How do I call a List from a different Scene? I get nullReferenceException bc in the current scene, it has no variables set to it. But in the previous Scene it had the correct values and variables that I wanted. (note: the 2 scenes are…
BenSmith
  • 429
  • 1
  • 6
  • 14
-1
votes
1 answer

Please solve javaFX issue

Please help me to change gif file in javaFX ImageView and then switch to another scene after the gif is played once. When i do it like i.setImage(url); window.setScene(s); the switch is done immediately. I don't see the gif shown on the…
Juggernaut
  • 315
  • 1
  • 3
  • 9
-1
votes
1 answer

Getting the coordinates on the scene (three js)

I'm really struggling with this and have gone through several discussions that are not really related to my problem. If anybody can help, I would greatly appreciate. I'm writing a html document using the three.js library. There is a scene called…
-1
votes
1 answer

Lua - How to create a slide-show?

This is one version of the code required for a scene to scene transition in Lua with a timer and without user input, just like a slide-show:
julianLE3
  • 85
  • 7
-1
votes
2 answers

Corona: go to scene when event loop if else statement variable matches

ok so I have this. local quotetap = 30 function changet() if tImage then tImage:removeSelf() end if counterBlock then counterBlock:removeSelf() end tImage = display.newImage( "images/tFaces_"..math.random(6)..".jpg", 264, 280 ) tImage.x =…
-1
votes
1 answer

Exit From A Scene Of Storyboard

I am Using Xcode 6.3.2 and I Have A Question. i Want to Release a scene Of Storyboard When I Go To Another Scene. How Can i Do It? Releasing a Scene Of Storyboard That When i go To It Again,It Start similar To First Time. ARC On My Project Is…
-1
votes
1 answer

How can a dynamically generated JavaFX scene be changed in a single stage?

I'm currently working on a project requiring me to switch back and forward between scenes. I have already written some code for it but it isn't as elegant as I wanted to be, especially as there is few flickers when I switch between them and…
-1
votes
1 answer

Cannot find symbol error when calling method from different class file

I'm trying to call a method form a separate class file to my main program java file but when I try to call the method on an object, I get the error symbol cannot be found for the method. Both files are in the same directory. //This is my main java…
Mageneto
  • 23
  • 2
  • 9
-1
votes
1 answer

Flash cs6 is there a way to play an animation from the current scene?

I cant find anything about playing from a certain scene when i search for it so please can someone help me with this. say i have an animation with 5 scenes, how can i preview my animation from scene 3, so it only plays scene 3,4 and 5? its a long…
-2
votes
1 answer

JavaFX: Multiple 'views', 'pages' or scenes - how to approach?

I am trying to build a dummy webshop with JavaFX. I deliberately do not use fxml, scenebuilder, maven or any other build tool. Just plain JavaFX, in order to really get to understand the basics. However, I ran into a problem creating and navigating…
-2
votes
1 answer

how can switch between scenes if the condition is true JavaFX

I am creating a login system using javaFX . When the user enters correct username and password the system should open a new scene called "Dashbord". here is my login function public void validatelogin() throws SQLException, ClassNotFoundException,…
-2
votes
1 answer

How to close primaryStage and open new stage?

I have tried researching various pages regarding how to switch scenes or even stages with no luck to help my specific case. I am trying to create a program with a login form that manages a school library. I have a login form that authenticates the…
Loritt
  • 1
  • 2
-2
votes
1 answer

Maps/Battles system in Unity using Mirror (Dofus-like)

I've been thinking at the best way to implement a system of "maps" (like DOFUS) using Mirror (see https://www.youtube.com/watch?v=PvfohUbfp90&t=2s if someone wants to see a better insight on what I'm talking about, just the first 30/40 seconds) Each…
1 2 3
66
67