Game settings

BeginnerProgrammerDesigner

You can configure the global settings of your game in the Game Settings asset. By default, the Game Settings asset is stored in your project's Assets folder.

Edit game settings

  • In the Solution Explorer (the bottom-left pane by default), select the Assets folder.

Select Assets folder asset

  • In the Asset View (the bottom pane by default), select the GameSettings asset.

Select Game Settings asset

  • In the Property Grid (the right-hand pane by default), edit the Game Settings properties.

Game settings

Default scene

You can have multiple scenes in your project. The default scene is the scene Xenko loads at runtime.

To set the default scene:

  • In the GameSettings properties, next to Default Scene, click Hand icon (Select an asset).

Set default scene

The Select an asset window opens.

  • Select the default scene and click OK.

For more information about scenes, see Manage scenes.

Graphics compositor

You can have multiple graphics compositors in your project, but you can only use one at a time.

To set the graphics compositor:

  • In the GameSettings properties, next to Graphics compositor, click Hand icon (Select an asset).

Set default scene

The Select an asset window opens.

  • Select the graphics compositor and click OK.

For more information, see Graphics compositor.

Audio

Audio settings

PropertyDescription
HRTF supportEnable HRTF audio. Note that only audio emitters with HRTF enabled will produce HRTF audio. For more details, see HRTF.

For more details about audio, see Audio.

Editor

The editor settings control how Game Studio displays entities in the Scene Editor. These settings have no effect on your game.

Note

How Game Studio displays entities is also affected by the Color space setting under Rendering.

Editor settings

PropertyDescription
Rendering modeHow Game Studio renders thumbnails and Asset Previews
Animation framerateThe framerate of animations shown in Game Studio. This doesn't affect animation data.

Navigation

Navigation settings

Dynamic navigation mesh properties

PropertyDescription
EnabledEnable dynamic navigation on navigation components that have no assigned navigation mesh
Included collision groupsSet which collision groups dynamically-generated navigation meshes use. By default, meshes use all collision groups
Build settingsAdvanced settings for dynamically-generated navigation meshes

For more details, see Dynamic navigation.

Navigation group properties

PropertyDescription
ItemThe name of the group.
HeightThe height of the entities in this group. Entities can't enter areas with ceilings lower than this value.
Maximum climb heightThe maximum height that entities in this group can climb.
Maximum slopeThe maximum incline (in degrees) that entities in this group can climb. Entities can't go up or down slopes higher than this value.
RadiusThe larger this value, the larger the area of the navigation mesh entities use. Entities can't pass through gaps of less than twice the radius.

For more details, see Navigation.

Physics

Physics settings

PropertyDescription
FlagsCollisionsOnly disables physics except for collisions. For example, if this is enabled, objects aren't moved by gravity, but will still collide if you move them manually. ContinuousCollisionDetection prevents fast-moving entities erroneously moving through other entities. Note: other flags listed here currently aren't enabled in Xenko.
Max sub stepsThe maximum number of simulations the physics engine can run in a frame to compensate for slowdown.
Fixed time stepThe length in seconds of a physics simulation frame. The default is 0.016667 (one sixtieth of a second).

Rendering

Rendering settings

PropertyDescription
Default back buffer widthThis might be overridden depending on the ratio and/or resolution of the device. On Windows, this is the window size. On Android/iOS, this is the off-screen target resolution.
Default back buffer heightThis might be overridden depending on the ratio and/or resolution of the device. On Windows, this is the window size. On Android/iOS, this is the off-screen target resolution.
Adapt back buffer to screenAdapt the ratio of the back buffer to fit the screen ratio
Default graphics profileThe graphics feature level required by the project
Color spaceThe color space (gamma or linear) used for rendering. This affects the game at runtime and how elements are displayed in Game Studio.
Display orientationThe display orientation of the game (default, portrait, left landscape, or right landscape).
Target graphics platformThe target platform Xenko builds the project for. If you set this to Default, Xenko chooses the most appropriate platform. For more information, see Set the graphics platform.
Tip

To check which default platform your project uses, add a break point to your code (eg in a script), run the project, and check the value of the GraphicsDevice.Platform variable.

Streaming

Streaming settings

PropertyDescription
StreamingEnable streaming
Update intervalHow frequently Xenko updates the streaming. Smaller intervals mean the streaming system reacts faster, but use more CPU and cause more memory fluctuations.
Max resources per updateThe maximum number of textures loaded or unloaded per streaming update. Higher numbers reduce pop-in but might slow down the framerate.
Resource timeout (ms)How long resources stay loaded after they're no longer used (when the memory budget is exceeded)
Memory budget (in MB)When the memory used by streaming exceeds this budget, Xenko unloads unused textures. You can increase this to keep more textures loaded when you have memory to spare, and vice versa.
Note

Currently, only textures can be streamed.

For more details, see Streaming.

Textures

Texture settings

PropertyDescription
Texture qualityThe texture quality when encoding textures. Fast uses the least CPU, but has the lowest quality. Higher settings might result in slower builds, depending on the target platform.

Overrides

You can override settings for particular platforms, graphics APIs, and so on. For example, you can set different texture qualities for different platforms.

  • With the GameSettings asset selected, in the Property Grid, under Overrides, click Green plus button (Add).

Select graphics platform

Game Studio adds an override.

  • In the new override, next to Platforms, select the platforms you want the override to apply to. You can select as many as you need.

Select graphics platform override

  • Optional: If you want this override to apply only to a specific GPU platform, choose it from the Specific filter drop-down list.

Specific filter

You can add GPU platforms to this list under Platform filters (see Add a platform filter below).

  • In the Configuration drop-down menu, select the kind of setting you want to override (Editor, Texture, Rendering or Physics).

Select graphics platform override

  • Set the options you want to override.

Add a platform filter

You can choose items in the Platform Filters list as a specific platform filter when you set an override (see above).

Specific filter

  • With the GameSettings asset selected, in the Property Grid, expand Platform Filters.

    The Property Grid displays a list of platform filters you can use.

List of platform filters

  • At the bottom of the list, click Add to Platform Filters.

    Game Studio adds a new empty item.

  • In the item field, type the GPU filter you want to add.

Type platform filter

After you add a platform filter, you can select it under Override > Specific filter.

Override

Note

If the new filter isn't listed, remove the override and re-add it.

Splash screen

The splash screen is displayed when your game starts. The default is the Xenko splash screen.

Note

The splash screen is only displayed when the game is built in release mode.

Settings

PropertyDescription
TextureThe image (eg company logo) displayed as the splash screen. By default, this is XenkoDefaultSplashScreen.
ColorThe color the splash screen fades in on top of. By default, this is black (#FF000000).

For more information, see Splash screen.

See also