Torque3D/Templates/BaseGame/game/tools/levels/DefaultEditorLevel.mis
Nils Eikelenboom dffb557930 Adjusting window titles to fit properly
Because of the large width & height of the Arial font at 18 did the window titles not fit properly. Font has been decreased and made bold for the sake of distinction. Additional has the terrainpainter window's position been corrected (terrainEditor.ed.tscript)
2024-09-12 18:16:25 +02:00

50 lines
1.3 KiB
Plaintext

//--- OBJECT WRITE BEGIN ---
new Scene(EditorTemplateLevel) {
isEditing = "1";
enabled = "1";
new LevelInfo(theLevelInfo) {
FogColor = "0.6 0.6 0.7 1";
fogDensityOffset = "700";
canvasClearColor = "0 0 0 255";
soundAmbience = "AudioAmbienceDefault";
enabled = "1";
};
new ScatterSky(DynamicSky) {
sunScale = "0.991102 0.921582 0.83077 1";
zOffset = "-3000";
azimuth = "25";
brightness = "5";
MoonMatAsset = "Core_Rendering:moon_wglow";
useNightCubemap = "1";
nightCubemap = "nightCubemap";
logWeight = "0.9";
mieScattering = "0.0045";
};
new CloudLayer(SkyClouds) {
TextureAsset = "Core_Rendering:clouds_normal_displacement_image";
coverage = "0.25";
windSpeed = "0.5";
height = "6";
};
new Skylight(SkyAmbient) {
persistentId = "289ad401-3140-11ed-aae8-c0cb519281fc";
reflectionPath = "tools/levels/DefaultEditorLevel/probes/";
};
new GroundPlane() {
scaleU = "32";
scaleV = "32";
MaterialAsset = "Prototyping:FloorGray";
enabled = "1";
position = "0 0 0";
rotation = "1 0 0 0";
scale = "1 1 1";
};
new TerrainBlock(NewTerrain1) {
TerrainAsset = "ExampleModule:NewTerrain1";
position = "-512 -412 -511";
};
};
//--- OBJECT WRITE END ---