As the subject says, i don't know how to make a map with locked camera mode...
...
Can anyone help?
This forum is locked and will eventually go offline. If you have feedback to share you can find us in our Discord channel "MythoLogic Interactive" https://discord.gg/nECKnbT7gk
Forum rules
Forum rules
How to make only one camera mode in map?
Forum rules
By using the forum you agree to the following rules.
By using the forum you agree to the following rules.
-
Armadyl5
- Superfighter

- Posts: 119
- Joined: Sun Mar 20, 2016 9:50 am
- Started SFD: 1.2.1
- Gender:
- Age: 27
type this script to allow the dynamic camera Only at the start .
public void OnStartup(){
Game.SetAllowedCameraModes(CameraMode.Dynamic);
Game.SetCurrentCameraMode(CameraMode.Dynamic);
}
type this script to allow the Static camera Only at the start .
public void OnStartup(){
Game.SetAllowedCameraModes(CameraMode.Static);
Game.SetCurrentCameraMode(CameraMode.Static);
}
public void OnStartup(){
Game.SetAllowedCameraModes(CameraMode.Dynamic);
Game.SetCurrentCameraMode(CameraMode.Dynamic);
}
type this script to allow the Static camera Only at the start .
public void OnStartup(){
Game.SetAllowedCameraModes(CameraMode.Static);
Game.SetCurrentCameraMode(CameraMode.Static);
}
1 x
Never Surrender !
Always Fight For Your Rights , and Don't Let Your Friends Down .
Always Fight For Your Rights , and Don't Let Your Friends Down .
