Difference between revisions of "Exporting Scenes"

From Virtual World Web Wiki
Jump to: navigation, search
(Page Creatiuon)
 
(Details to keep in mind when exporting Unity Scenes)
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
Details for scene export go here
+
 
 +
== Details to keep in mind when exporting Unity Scenes ==
 +
 
 +
*Ensure that your project settings have all necessary graphics pipelines selected and that you are in the Linear color space.
 +
 
 +
[[File:GraphicsSettings.png]]
 +
 
 +
 
 +
*Make sure all scene items are under a GameObject called _World
 +
 
 +
[[File:WorldRoot.png]]
 +
 
 +
*If your scene has any realtime reflection probes make sure they are set to '''Refresh Mode: By Scripting'''. They should also be grouped under a GameObject called '''Reflection_GRP''' They will be updated automatically every 60 seconds.
 +
[[File:Probes.png]]  [[File:Probes2.png]]
 +
 
 +
 
 +
*Make sure your scenes do not contain any Scripts (MonoBehaviours) or Cameras.
 +
*Mark anything that will not move or change size/rotation as Static[http://docs.unity3d.com/Manual/StaticObjects.html]
 +
*Use mesh colliders sparingly, it is better to create complex colliders out of many boxes/spheres instead of using a Mesh Collider.
 +
 
 +
 
 +
 
 +
*Be sure to use the latest Scene Export [[File:ExportScenes.cs]] script.

Latest revision as of 17:22, 20 January 2016

Details to keep in mind when exporting Unity Scenes

  • Ensure that your project settings have all necessary graphics pipelines selected and that you are in the Linear color space.

GraphicsSettings.png


  • Make sure all scene items are under a GameObject called _World

WorldRoot.png

  • If your scene has any realtime reflection probes make sure they are set to Refresh Mode: By Scripting. They should also be grouped under a GameObject called Reflection_GRP They will be updated automatically every 60 seconds.

Probes.png Probes2.png


  • Make sure your scenes do not contain any Scripts (MonoBehaviours) or Cameras.
  • Mark anything that will not move or change size/rotation as Static[1]
  • Use mesh colliders sparingly, it is better to create complex colliders out of many boxes/spheres instead of using a Mesh Collider.