Difference between revisions of "GetPriority - ConstructibleObject"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(added f4se member)
 
imported>Qazaaq
(see also edited)
Line 25: Line 25:
== See Also ==
== See Also ==
*[[Constructible Object]]
*[[Constructible Object]]
*[[Form Script]]
*[[SetPriority - ConstructibleObject]]
*[[SetPriority - ConstructibleObject]]



Revision as of 06:44, 18 October 2017

F4SE Member of: ConstructibleObject Script

Gets the priority for this constructible object.

Syntax

int Function GetPriority() Native

Parameters

None.

Return Value

The priority for this constructible object.

Examples

int priority = myConstructibleObject.GetPriority()
Debug.Trace("This constructible objects priority equals " + priority)

Notes

None

See Also