v7 beta documentation in progress. v7 beta documentation may be incomplete or inaccurate.
v7 functions and features may be significantly different from previous ACS versions.
These instructions are not valid for current v6+ ACS!
The FixedCam setting in the Root Settings allows you to bypass the internal ACS 3-Camera/SportCam system and edit your own camera settings directly in the script. If you want to replicate camera settings from a different script but cannot get the ACS camera to match, then this would be a good choice.
Set the FixedCam variable to TRUE near the top of the Root Settings script, and then the settings under the Fixed_Camera() function in the Root Settings will be used instead of the internal ACS camera.
Currently, with FixedCam enabled, the camera will no longer be menu-adjustable, and the > Camera option will vanish from the user menu. Any calls via the DCH to the built-in camera systems will not function, so you may wish to remove those from the HUD notecard.
To replace the camera entirely with one in you have added with a different script (should probably be triggered by detecting a seated avatar) , you can turn on FixedCam and set the Fixed_Camera() routine entirely to be empty, ACS will not turn on any camera or take camera permissions, and then you should be able to use your own entirely.
Fixed_Camera() routine set to do nothing:
Fixed_Camera()
{
}
[v7 Main]