Difference between revisions of "RegisterForCameraState - ScriptObject"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(removed incomplete)
imported>Qazaaq
m
Line 23: Line 23:


<source lang="papyrus">
<source lang="papyrus">
Scriptname Example extends ScriptObject
Scriptname Example


Event OnInit()
Event OnInit()

Revision as of 17:26, 25 January 2018

F4SE Member of: ScriptObject Script
Requires F4SE version 0.3.1 or higher.

Registers this script to receive the OnPlayerCameraState event. This event occurs whenever there is a change to the players camera state.

Syntax

Function RegisterForCameraState() Native

Parameters

  • None

Return Value

  • None

Examples

RegisterForCameraState()


Scriptname Example

Event OnInit()
	RegisterForCameraState()
EndEvent

Event OnPlayerCameraState(int aiOldState, int aiNewState)
	Debug.Trace("The players camera state has changed.")
EndEvent

See Also