Changeset 12006 for code/branches/ScriptableController_FS18/data/levels
- Timestamp:
- May 24, 2018, 4:42:43 PM (7 years ago)
- Location:
- code/branches/ScriptableController_FS18/data/levels
- Files:
-
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ScriptableController_FS18/data/levels/ScriptableControllerTestMoveKillDrone.oxw
r11999 r12006 1 1 <LevelInfo 2 name = "Scriptable Controller Spawning Pawn"3 description = "Demonstrates spawning a drone by using a lua script."2 name = "Scriptable Controller Moving and Killing Pawn" 3 description = "Demonstrates moving and killing a drone by using a lua script." 4 4 tags = "test" 5 5 screenshot = "emptylevel.png" … … 18 18 ?> 19 19 20 <Level script="scripts/ BBBScriptableControllerTest.lua">20 <Level script="scripts/ScriptableControllerMoveKill.lua"> 21 21 <templates> 22 22 <Template link=lodtemplate_default /> … … 33 33 34 34 35 < AAAAutonomousDrone id="dummy" position="0,0,0">35 <ScriptableControllerDrone id="dummy" position="0,0,0"> 36 36 <attached> 37 37 <Model scale="10" mesh="drone.mesh"/> … … 40 40 <BoxCollisionShape position="0,0,0" halfExtents="10, 10, 10" /> 41 41 </collisionShapes> 42 </ AAAAutonomousDrone>42 </ScriptableControllerDrone> 43 43 44 44 -
code/branches/ScriptableController_FS18/data/levels/ScriptableControllerTestSpawn.oxw
r11999 r12006 1 1 <LevelInfo 2 name = "Scriptable Controller Moving and Killing Pawn"3 description = "Demonstrates moving and killing a drone by using a lua script."2 name = "Scriptable Controller Spawning Pawn" 3 description = "Demonstrates spawning a drone by using a lua script." 4 4 tags = "test" 5 5 screenshot = "emptylevel.png" … … 16 16 include("templates/spaceshipEscort.oxt") 17 17 include("templates/endurancetest_template.oxt") 18 include("templates/ AAAAutonomousDroneTemplate.oxt")18 include("templates/ScriptableControllerDroneTemplate.oxt") 19 19 ?> 20 20 21 <Level script="scripts/ AAAScriptableControllerTest.lua">21 <Level script="scripts/ScriptableControllerSpawn.lua"> 22 22 <templates> 23 23 <Template link=lodtemplate_default /> … … 32 32 <Light type=directional position="0,0,0" direction="0.253, 0.593, -0.765" diffuse="1.0, 0.9, 0.9, 1.0" specular="1.0, 0.9, 0.9, 1.0"/> 33 33 <SpawnPoint team=0 position="100,0,0" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipescort /> 34 <!-- <SpawnPoint team=2 position="0,0,0" lookat="0,0,0" spawnclass=AAAAutonomousDrone pawndesign=AAAAutonomousDroneTemplate /> -->35 34 36 35 -
code/branches/ScriptableController_FS18/data/levels/templates/ScriptableControllerDroneTemplate.oxt
r11999 r12006 1 <Template name= AAAAutonomousDroneTemplate>2 < AAAAutonomousDrone>1 <Template name=ScriptableControllerDroneTemplate> 2 <ScriptableControllerDrone> 3 3 <attached> 4 4 <Model scale="10" mesh="drone.mesh"/> … … 7 7 <BoxCollisionShape position="0,0,0" halfExtents="10, 10, 10" /> 8 8 </collisionShapes> 9 </ AAAAutonomousDrone>9 </ScriptableControllerDrone> 10 10 </Template>
Note: See TracChangeset
for help on using the changeset viewer.