Talk:QueueNiNodeUpdate - Actor

There are no discussions on this page.

You can use this function in conjunction with Utility.SetINIBool("bUseFaceGenPreprocessedHeads:General", bool) to fix the known player fused eye bug.(Skyrim 1.9.32)

Like this for example:

;RefreshFace
;Fixes fused eyes on the player after playing sleeping animation.
Function RefreshFace()
	String facegen = "bUseFaceGenPreprocessedHeads:General"
	Utility.SetINIBool(facegen, False)
	Game.GetPlayer().QueueNiNodeUpdate()
	Utility.SetINIBool(facegen, True)
EndFunction

This can be used for other facial deformities as well on any actor. As long as the deformities were not present during creation. Bot Owned (talk) 2013-05-25T08:32:41 (EDT)

Return to "QueueNiNodeUpdate - Actor" page.