Difference between revisions of "NetImmerse Script"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>CraftySentinel
(Created NetImmerse Script)
 
imported>CraftySentinel
Line 21: Line 21:
== Global SKSE Member Functions ==
== Global SKSE Member Functions ==


{|class="wikitable" width =100%
:'''Bool [[HasNode - NetImmerse|HasNode]](ObjectRefrence ''ref'', String ''node'', Bool ''firstPerson'')'''
!style="text-align:left;"|Function
:*Returns whether the object has the particular node.
!style="text-align:left;"|Description
|-
|[[HasNode - NetImmerse|Bool '''HasNode'''(ObjectRefrence ''ref'', String ''node'', Bool ''firstPerson'')]]
|Returns whether the object has the particular node.
|-


|[[GetNodePositionX - NetImmerse|Float '''GetNodePositionX'''(ObjectReference ''ref'', String node, Bool firstPerson)]]
:'''Float [[GetNodePositionX - NetImmerse|GetNodePositionX]](ObjectReference ''ref'', String node, Bool firstPerson)'''
||Returns the X position of the specified Node on the specified Object.
:*Returns the X position of the specified Node on the specified Object.
|-


|[[GetNodePositionY - NetImmerse|Float '''GetNodePositionY'''(ObjectReference ''ref'', String node, Bool firstPerson)]]
:'''Float [[GetNodePositionY - NetImmerse|GetNodePositionY]](ObjectReference ''ref'', String node, Bool firstPerson)'''
||Returns the Y position of the specified Node on the specified Object.
:*Returns the Y position of the specified Node on the specified Object.
|-


|[[GetNodePositionZ - NetImmerse|Float '''GetNodePositionZ'''(ObjectReference ''ref'', String node, Bool firstPerson)]]
:'''Float [[GetNodePositionZ - NetImmerse|GetNodePositionZ]](ObjectReference ''ref'', String node, Bool firstPerson)'''
||Returns the Z position of the specified Node on the specified Object.
:*Returns the Z position of the specified Node on the specified Object.
|-


|[[GetNodeScale - NetImmerse|Float '''GetNodeScale'''(ObjectReference ''ref'', String node, Bool firstPerson)]]
:'''Float [[GetNodeScale - NetImmerse|GetNodeScale]](ObjectReference ''ref'', String node, Bool firstPerson)'''
||Returns the scale of the specified Node on the specified Object
:*Returns the scale of the specified Node on the specified Object.
|-


|[[SetNodeScale - NetImmerse|'''SetNodeScale'''(ObjectReference ''ref'', String node, Bool firstPerson)]]
:'''[[SetNodeScale - NetImmerse|SetNodeScale]](ObjectReference ''ref'', String node, Bool firstPerson)'''
||Sets the scale of the specified Node on the specified Object
:*Sets the scale of the specified Node on the specified Object
|-


|[[SetNodeTextureSet - NetImmerse|'''SetNodeTextureSet'''(ObjectReference ''ref'', String node, TextureSet tSet, Bool firstPerson)]]
:'''[[SetNodeTextureSet - NetImmerse|SetNodeTextureSet]](ObjectReference ''ref'', String node, TextureSet tSet, Bool firstPerson)'''
||Sets a NiTriShape's textures by name of the Nif node.
:*Sets a NiTriShape's textures by name of the Nif node.
|-
 
|}

Revision as of 19:50, 2 February 2014

Source: SKSE

Extends: None

Flags: Hidden


Script for the manipulation of NiNodes.


Definition

ScriptName NetImmerse Hidden


Global SKSE Member Functions

Bool HasNode(ObjectRefrence ref, String node, Bool firstPerson)
  • Returns whether the object has the particular node.
Float GetNodePositionX(ObjectReference ref, String node, Bool firstPerson)
  • Returns the X position of the specified Node on the specified Object.
Float GetNodePositionY(ObjectReference ref, String node, Bool firstPerson)
  • Returns the Y position of the specified Node on the specified Object.
Float GetNodePositionZ(ObjectReference ref, String node, Bool firstPerson)
  • Returns the Z position of the specified Node on the specified Object.
Float GetNodeScale(ObjectReference ref, String node, Bool firstPerson)
  • Returns the scale of the specified Node on the specified Object.
SetNodeScale(ObjectReference ref, String node, Bool firstPerson)
  • Sets the scale of the specified Node on the specified Object
SetNodeTextureSet(ObjectReference ref, String node, TextureSet tSet, Bool firstPerson)
  • Sets a NiTriShape's textures by name of the Nif node.