04-27-2010, 03:44 AM
You won't believe how easy it is.... And this applies to RTAB too...
Look in the beginning of the system and there is the atb_setup method...
... variances may be because my copy is an English translation. :cheery:
Now, go to the line that reads:
and change it to this:
Now, that makes it so you can make a script call like
$mydrive = true .... to turn the drive/camera system back on, or
$mydrive = nil .... to turn the camera system off.
By default, this change makes the camera system 'off' when the game starts, so you will need to use a script call of mydrive = true to turn it on.
Hope that helps.
Look in the beginning of the system and there is the atb_setup method...
Code:
attr_accessor :camera # Present camera possession person
#--------------------------------------------------------------------------
# * ATB fundamental setup
#--------------------------------------------------------------------------
def atb_setup
# ATB initialization
Now, go to the line that reads:
Code:
@drive = true # Turns camera system on/off
Code:
@drive = $mydrive # Turns camera system on/off
Now, that makes it so you can make a script call like
$mydrive = true .... to turn the drive/camera system back on, or
$mydrive = nil .... to turn the camera system off.
By default, this change makes the camera system 'off' when the game starts, so you will need to use a script call of mydrive = true to turn it on.
Hope that helps.