Refers to the Editor used to make Unity apps. It features real-time simulation of the game, without the need to build the game and provides the statistics on the game performance.

learn more… | top users | synonyms

1
vote
1answer
29 views

Unity: Adjusting the camera so that the scene view and the game view look same

when I make any object I'm able to see that by other side in the game view. And this troubles me in adjusting the objects. So can anyone help me to adjust the main camera in such a way that views of ...
0
votes
0answers
13 views

Oculus Integration on Unity 5.1.2 not showing Oculus Lenses (like two black boxes) when debugging/editor

I added Oculus Utilities for Unity 5.1.2, created a simple scene, added OVRCharacterController prefab, it works fine like normal fps controller but as far as I know, it should show something like 2 ...
1
vote
2answers
57 views

How to display a list of 2D arrays in the inspector

Simply put, how do I make public List<bool[,]> appear in the inspector? Every 'bool[,]' is a solution to a puzzle in my game and I want to be able to view and edit them in the inspector.
0
votes
1answer
96 views

How to animate objects in Unity 3D

Yesterday I played around with Unity 4.6 and I came up with a question about animation. I have an fps-survival project (most for educational purpose). I use the default build-in fps camera ...
0
votes
0answers
50 views

In the Unity Editor, how do I find prefabs containing a specific component?

I want to find all prefabs in the project that contain a specific Component? I only need this in-editor; no need at runtime. If they are in added to the Scene, I can right-click and Find References ...
1
vote
0answers
26 views

How do I force Unity to reload editor scripts

I am working of some editor scripts for Unity but have found that it is difficult to force Unity to reload my editor scripts. My scripts are modelled on the static constructor approach and perform ...
2
votes
1answer
79 views

Unity: How to make script work with duplicated objects?

I have an object in my game that, when clicked, causes the player to move toward it. It does this by sending its position to the player's SetTarget function. The player's Move function then heads ...
3
votes
1answer
53 views

Where does Unity save the editor window layouts?

In every project there are the CurrentLayout.dwlt and CurrentMaximizeLayout.dwlt files, but those, as the name implies, are just the current layouts. I've been unable to find the general files where ...