Difference between revisions of "GetParentRef"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Geckbot
m (Robot: Automated text replacement (-\[\[Category:(.*?)\(GECK 1.0\)\]\] +Category:\1(GECK 1.1)))
imported>Hugepinball
(function name in example was wrong)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Incomplete}}
{{Function
|CSWikiPage = GetParentRef
|origin = GECK1
|summary = Returns the enable parent reference, as set in the Enable Parent tab of the [[Reference]] dialog. A reference with an enable parent will disable/enable in accordance with its parent
|name = GetParentRef
|returnType = ref
|referenceType = [Actor, Activator]


Link to TES4 Construction Set Wiki: [http://cs.elderscrolls.com/constwiki/index.php/GetParentRef GetParentRef].
|example = <pre>ref myParent
set myParent to BuddyRef.GetParentRef</pre>
This will set ''myParent'' to BuddyRef's enable parent
}}
 
==Notes==
None
 
==See Also==
*[[GetLinkedRef]]
*[[GetDisabled]]
*[[Disable]]
*[[Enable]]


[[Category:Functions]]
[[Category:Functions]]

Latest revision as of 16:48, 11 March 2010

< [[::Category:Functions|Category:Functions]]

Link to TES4 Construction Set Wiki: GetParentRef.

A function included in the GECK version 1.1.0.36.

Description

Returns the enable parent reference, as set in the Enable Parent tab of the Reference dialog. A reference with an enable parent will disable/enable in accordance with its parent

Syntax

[help]
(ref) [Actor, Activator].GetParentRef

Example

ref myParent
set myParent to BuddyRef.GetParentRef

This will set myParent to BuddyRef's enable parent

Notes

None

See Also