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
4
votes
1 answer

Godot: Cannot get path of node as it is not in a scene tree

I have a problem with Godot (I'm learning it). I have a project with 3 scenes, in each there are nodes with attached scripts, shown bellow. Main.gd extends Node2D var maquina func _enter_tree(): maquina = Maquina.new() …
Fahed
  • 195
  • 2
  • 10
4
votes
1 answer

Requesting focus on a JavaFX stage doesn't change the macOS top left menu bar title

When I try to request focus (I'm on macOS Mojave 10.14.2) when the user clicks a 'show' button from the tray icon menu, it doesn't change the menu bar on the top left corner (e.g. Chrome -> java), but at least it brings to front. It doesn't appear…
Matias
  • 459
  • 1
  • 4
  • 14
4
votes
2 answers

How can I merge my Unity Scene using Unity Smart Merge?

I am trying to merge a Unity scene my partner and I have been working on, using Smart Merge. My other assets and prefabs resolved the conflicts with Smart Merge just fine; however, one scene isn't merging at all. In my .git/config file I…
SoiL
  • 43
  • 1
  • 3
4
votes
0 answers

What results does showStatistics throw me in scenekit?

I don't have much experience in scenekit, I'm actually working in project in a using scenekit, I'm creating sceneView and adding configurations for my project, but I don't know what's the 'showsStatistics' propiety meaning var sceneView: SCNView! …
4
votes
2 answers

Loading multiple fxml in javafx

I've been searching for a while and I haven't been able to get what I wanted to do. I've been using the javafx framework to switch fxml in javafx in this thread 'Loading new fxml in the same scene' with some success. I mean, I have a main window,…
JFValdes
  • 426
  • 8
  • 19
4
votes
1 answer

javafx - Set not resizable for only one stage

I would like to know, how to solve one problem. OK. I have two scenes. I want to set not resizable to first scene, but the second one is still resizable. I don't know how to do it.   Do you have any idea? Thanks for your help.
t.piwowarczyk
  • 365
  • 2
  • 5
  • 17
4
votes
4 answers

Display 1 no cameras rendering

One of my team members just cloned my unity project which was working fine on my pc(unity 5.5) where as it is displaying "Display 1 no cameras rendering" error in the scene on my teammate's pc(unity 5.4). We are using a git repository and this is…
Jajan
  • 887
  • 3
  • 15
  • 28
4
votes
1 answer

Javafx Scene switching causing stage size increase

I am using Javafx (without using FXML), and I am passing the stage into the a controller to change the scene on the stage when a button is clicked. The scene changes correctly but the size of the stage and the scene increases.It increases in size by…
user2370794
  • 69
  • 1
  • 6
4
votes
2 answers

Is there a way to get the number of polygons in a scene?

With three.js , is there a way to retrieve the polygon count of a scene? I did a search, but the only results that pop up at related to actual polygons and whether meshes have too many, etc.
user3591153
  • 409
  • 4
  • 14
4
votes
3 answers

Unity3D: Displaying different scenes on multiple monitors

Unity3D has native multimonitor support in recent versions. The API documentation suggests that this is tied to connecting each display to a camera view. Is it possible to, instead, map a display to a scene ? So that a user with two monitors could…
silentcoder
  • 161
  • 1
  • 1
  • 5
4
votes
1 answer

How to pause Java.uti.Timer?

I am developing a JavaFX application where I am using java.util.Timer to track user mouse movement. The concept is If the mouse doesn't move for some seconds in the scene then the buttons will be invisible whenever the mouse moves button will appear…
4
votes
1 answer

SceneManager doesn't get Scene by name

I have 3 scenes in my Unity project and trying to get a scene index by its name. I'm trying to use SceneManager but I can't figure out how to use SceneManager.GetSceneByName . Using SceneManager.GetSceneByName("Scene1"); returns null while I can…
Ghasem
  • 14,455
  • 21
  • 138
  • 171
4
votes
1 answer

what is the best way to show tile map and some other object in graphicsview?

recently i start to learn Qt and now i'm working on GCS project that it must have a map with some tiled imges and and some graphics item like Plan,the path and also on over off all some gauge. so we have 3 kind of item: Tiled map in the background…
M410
  • 301
  • 3
  • 15
4
votes
1 answer

Android Difference between Scenes and Transitions, Animations, and when to use them

So I recently have been reading into transitions and animations on the developer site: Animation http://developer.android.com/training/animation/index.html Scenes and transitions http://developer.android.com/training/transitions/index.html I do not…
L1ghtk3ira
  • 3,021
  • 6
  • 31
  • 70
4
votes
2 answers

SpriteKit: Node On Top Of Another Node

I want to create my player on top of the background. Somehow this doesn't work. The node counter goes up by one but it isn't visible. I do add the player after I add the background so it should be on top. The code I use to create the player: var…
Lukas Köhl
  • 1,569
  • 2
  • 15
  • 28