mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2025-10-30 08:11:25 +00:00
100 lines
3.2 KiB
Text
100 lines
3.2 KiB
Text
//--- OBJECT WRITE BEGIN ---
|
|
new SimGroup(MissionGroup) {
|
|
|
|
new ScriptObject(MissionInfo) {
|
|
name = "Gyrocopter";
|
|
desc = "Learn to fly!";
|
|
music = "Classic Vibe.ogg";
|
|
type = "Beginner";
|
|
startHelpText = "Use the Gyrocopter PowerUp to fly to the finish!";
|
|
level = "9";
|
|
artist = "Alex Swanson";
|
|
goldTime = "3750";
|
|
};
|
|
new MissionArea(MissionArea) {
|
|
area = "-360 -648 720 1296";
|
|
flightCeiling = "300";
|
|
flightCeilingRange = "20";
|
|
locked = "true";
|
|
};
|
|
new Sky(Sky) {
|
|
position = "336 136 0";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
cloudHeightPer[0] = "0";
|
|
cloudHeightPer[1] = "0";
|
|
cloudHeightPer[2] = "0";
|
|
cloudSpeed1 = "0.0001";
|
|
cloudSpeed2 = "0.0002";
|
|
cloudSpeed3 = "0.0003";
|
|
visibleDistance = "500";
|
|
useSkyTextures = "1";
|
|
renderBottomTexture = "1";
|
|
SkySolidColor = "0.600000 0.600000 0.600000 1.000000";
|
|
fogDistance = "300";
|
|
fogColor = "0.600000 0.600000 0.600000 1.000000";
|
|
fogVolume1 = "-1 -2.19536e+038 -2.19536e+038";
|
|
fogVolume2 = "-1 -2.2087e+038 -2.19536e+038";
|
|
fogVolume3 = "-1 -2.18196e+038 -2.16867e+038";
|
|
materialList = "~/data/skies/sky_day.dml";
|
|
windVelocity = "1 0 0";
|
|
windEffectPrecipitation = "0";
|
|
noRenderBans = "1";
|
|
fogVolumeColor1 = "128.000000 128.000000 128.000000 -222204871403647640000000000000000000000.000000";
|
|
fogVolumeColor2 = "128.000000 128.000000 128.000000 -219535990253541530000000000000000000000.000000";
|
|
fogVolumeColor3 = "128.000000 128.000000 128.000000 -214193076221289990000000000000000000000.000000";
|
|
};
|
|
new Sun() {
|
|
direction = "0.481726 0.481726 -0.732038";
|
|
color = "1.400000 1.200000 0.400000 1.000000";
|
|
ambient = "0.300000 0.300000 0.400000 1.000000";
|
|
};
|
|
new InteriorInstance() {
|
|
position = "0 0 0";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
interiorFile = "~/data/interiors_mbg/beginner/training_copter.dif";
|
|
showTerrainInside = "0";
|
|
};
|
|
new StaticShape(StartPoint) {
|
|
position = "28 5.79158e-008 81";
|
|
rotation = "0 0 -1 90.5273";
|
|
scale = "1 1 1";
|
|
dataBlock = "StartPad";
|
|
};
|
|
new StaticShape(EndPoint) {
|
|
position = "-28 6.5436e-007 65";
|
|
rotation = "0 0 -1 89.9544";
|
|
scale = "1 1 1";
|
|
dataBlock = "EndPad";
|
|
};
|
|
new Item() {
|
|
position = "18 0 81";
|
|
rotation = "1 0 0 0";
|
|
scale = "1 1 1";
|
|
dataBlock = "HelicopterItem";
|
|
collideable = "0";
|
|
static = "1";
|
|
rotate = "1";
|
|
showHelpOnPickup = "1";
|
|
};
|
|
new Trigger(Bounds) {
|
|
position = "-52.5444 38.0152 57.871";
|
|
rotation = "1 0 0 0";
|
|
scale = "107.509 73.1917 86.7494";
|
|
dataBlock = "InBoundsTrigger";
|
|
polyhedron = "0.0000000 0.0000000 0.0000000 1.0000000 0.0000000 0.0000000 0.0000000 -1.0000000 0.0000000 0.0000000 0.0000000 1.0000000";
|
|
};
|
|
new StaticShape() {
|
|
position = "-28.0149 0.164103 73.1906";
|
|
rotation = "0 0 -1 107.143";
|
|
scale = "1 1 1";
|
|
dataBlock = "SignFinish";
|
|
};
|
|
new AudioProfile(MusicProfile) {
|
|
fileName = "~/data/sound/Beach Party.ogg";
|
|
description = "AudioMusic";
|
|
preload = "0";
|
|
};
|
|
};
|
|
//--- OBJECT WRITE END ---
|