working on my doors along with the ALCscripting and the Python scripting here.
The scripting is going like Gahreesen's doors. In the Python file for Gahreesen we have:
- Code: Select all
arrivePt = ptAttribSceneobject(1, 'arrive point')
triggerRgn1 = ptAttribActivator(2, 'door 1 region sensor')
triggerRgn2 = ptAttribNamedActivator(3, 'door 2 region sensor')
As you can see the 2nd trigger region is not just a AttribActivator, but it's a AttribNamedActivator
My question is, should that be reflected in my ALCscripting? Like this? (sorry about the indents.....)
- Code: Select all
pythonfile:
file: InnPortalWarpEnter
parameters:
- type: sceneobject
ref: scnobj:entrypoint
- type: activator
ref: logicmod:$EnterRgn
- type: namedactivator
ref: logicmod:$ExitRgn
or does it still just get referenced like this:
- Code: Select all
pythonfile:
file: InnPortalWarpEnter
parameters:
- type: sceneobject
ref: scnobj:entrypoint
- type: activator
ref: logicmod:$EnterRgn
- type: activator
ref: logicmod:$ExitRgn