Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_BaseCameraComponent.c
Go to the documentation of this file.
1[ComponentEditorProps(category: "GameScripted/Camera", description: "")]
5
8{
9 //------------------------------------------------------------------------------------------------
10 // constructor
15 {
16 if (SCR_CameraBase.Cast(ent) == null)
17 {
18 Print(string.Format("Component %1 must be attached to SCR_CameraBase!", Type()), LogLevel.ERROR);
19 Deactivate(ent);
20 }
21 }
22}
enum EAIGroupCombatMode ComponentEditorProps(category:"GameScripted/AI", description:"Component for utility AI system for groups")
SCR_BaseCameraComponentClass ScriptComponentClass SCR_BaseCameraComponent(IEntityComponentSource src, IEntity ent, IEntity parent)
Base component for SCR_CameraBase.
void Deactivate()
int Type
proto void Print(void var, LogLevel level=LogLevel.NORMAL)
Prints content of variable to console/log.
LogLevel
Enum with severity of the logging message.
Definition LogLevel.c:14