Last change
on this file since 4608 was
4544,
checked in by snellen, 18 years ago
|
added CameraMan tag in cut scene
|
File size:
490 bytes
|
Rev | Line | |
---|
[4504] | 1 | -- Create the trigger |
---|
| 2 | trigger = ScriptTrigger() |
---|
| 3 | trigger:setScript("switchtotower.lua") |
---|
| 4 | trigger:setFunction("tick") |
---|
[4514] | 5 | trigger:setAbsCoor(4470.895508, 17.554901, -3433.780518) |
---|
[4504] | 6 | trigger:setTarget("Player") |
---|
[4514] | 7 | trigger:setRadius(500) |
---|
[4504] | 8 | trigger:setTriggerRemains(false) |
---|
| 9 | |
---|
| 10 | |
---|
| 11 | -- Add Objects |
---|
[4514] | 12 | thisscript:addObjectAsName("GameWorld", "Space Station 1B", "spacestationtower") |
---|
[4504] | 13 | |
---|
| 14 | function tick(timestep) |
---|
[4514] | 15 | if spacestationtower:setNextStoryName( "Space Station 1" ) then |
---|
| 16 | spacestationtower:stop() |
---|
[4504] | 17 | end |
---|
| 18 | return true |
---|
| 19 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.