Difference between revisions of "CreditsMenu"

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
(Added page.)
 
imported>Qazaaq
(added content)
Line 1: Line 1:
The '''Credits Menu''' is a scrolling list of names which recognize the Bethesda Studios team behind Fallout 4 and the [[Creation Kit]].
The '''Credits Menu''' is a scrolling list of names which recognize the Bethesda Studios team behind [[Fallout 4]] and the [[Creation Kit]].
 
== AS3 ==
* <code>var BGSCodeObj:Object</code>
* <code>var CreditsStrings:Array</code>
* <code>var CreditsLines:Array</code>
* <code>var CreditsContainer:MovieClip</code>
* <code>var CreditsFonts:Array</code>
* <code>var Background_mc:MovieClip</code>
* <code>var ButtonHintBar_mc:BSButtonHintBar</code>
* <code>function onCodeObjDestruction():*</code>
* <code>unction onCodeObjCreate():void</code>
* <code>function ProcessUserEvent(param1:String, param2:Boolean):Boolean</code>
* <code>function onEnterFrame(param1:Event):void</code>
* <code>function formatLine(param1:TextField, param2:int):void</code>
* <code>function appendCredits(param1:String):void</code>
* <code>function onMouseWheel(param1:MouseEvent):void</code>
* <code>function onQuitPress():Boolean</code>


==== BGSCodeObj ====
==== BGSCodeObj ====

Revision as of 20:09, 8 March 2020

The Credits Menu is a scrolling list of names which recognize the Bethesda Studios team behind Fallout 4 and the Creation Kit.

AS3

  • var BGSCodeObj:Object
  • var CreditsStrings:Array
  • var CreditsLines:Array
  • var CreditsContainer:MovieClip
  • var CreditsFonts:Array
  • var Background_mc:MovieClip
  • var ButtonHintBar_mc:BSButtonHintBar
  • function onCodeObjDestruction():*
  • unction onCodeObjCreate():void
  • function ProcessUserEvent(param1:String, param2:Boolean):Boolean
  • function onEnterFrame(param1:Event):void
  • function formatLine(param1:TextField, param2:int):void
  • function appendCredits(param1:String):void
  • function onMouseWheel(param1:MouseEvent):void
  • function onQuitPress():Boolean

BGSCodeObj

  • closeMenu : Function()
  • getScrollSpeed : Function()
  • requestCredits : Function()

See Also