-
-
Notifications
You must be signed in to change notification settings - Fork 0
World Tab
Video Tutorial
Coming soon - video tutorial placeholder
The World tab manages your scene's central hub and atmosphere system.
The StrangeHub is the central manager for all Strange Toolkit features in your world. Every world needs exactly one.
- Open the World tab
- If no hub exists, click Create StrangeHub
- A new GameObject named "StrangeHub" will be created
The toolkit shows whether a hub is present:
- Green checkmark - Hub found and linked
- Warning - No hub in scene
Atmosphere presets let you define multiple environment configurations that players can switch between at runtime.
Each atmosphere preset contains:
- Name - Display name for the preset
- Is Default - Whether this preset loads on world start (only one can be default)
- Skybox Material - The skybox to display
- Use Fog - Enable/disable fog for this preset
- Fog Color - Color of the fog (if enabled)
- Fog Density - How thick the fog is (if enabled)
- Linked Root - A GameObject that toggles on when this atmosphere is active
- Click Add Preset in the Atmosphere Presets section
- Configure each field:
- Assign a skybox material
- Optionally enable fog and set color/density
- Optionally link a root GameObject (useful for lighting changes)
- Mark one preset as "Default"
Click the Preview button next to any preset to see how it looks in the editor without committing changes.
Click the X button next to a preset to remove it.
An Atmosphere Switch is an in-world object that players can interact with to cycle through atmospheres.
- Set up at least one atmosphere preset
- Click Create Atmosphere Switch
- A sphere with the
StrangeAtmosphereSwitchcomponent will be created - Position it in your world where players can reach it
When a player interacts with the switch:
- The hub cycles to the next atmosphere
- Skybox changes
- Fog updates (if configured)
- Linked root objects toggle
The cleanup system tracks objects that should return to their original positions.
- Pickup objects that players drop
- Props that get moved during gameplay
- Any object that needs position reset
- Add objects to the
cleanupPropsarray on StrangeHub - The hub will track their initial positions
- Call cleanup methods at runtime to restore positions
- Keep skybox materials optimized (reasonable resolution)
- Use fog sparingly on Quest
- Link root objects for complex lighting setups (different light rigs per atmosphere)
- Place the StrangeHub at the scene root
- Don't parent it to moving objects
- Keep it active at all times
- Test all atmosphere transitions
- Ensure smooth visual handoff between presets
- Consider player location when placing switches