Difference between revisions of "VN fnc credits"

From Savage Game Design Wiki
Jump to navigation Jump to search
(Created page with "{{Function |v= 1.00 |author=Ethan Johnson |a= |e= |g1= vn_end_functions |d= <pre>Plays credits scene over game display.</pre> |s= [_continued_text,_end_code] call VN_fn...")
 
(No difference)

Latest revision as of 01:32, 5 May 2022

← back to Functions Introduced in S.O.G. Prairie Fire v1.00
by Ethan Johnson
Argument(s): n/a
Effect(s): unknown

Description

Plays credits scene over game display.

Syntax

Syntax
[_continued_text,_end_code] call VN_fnc_credits;
Parameters
_continued_text: Boolean - (Optional, default false) Should the "To be continued" text be shown.
_end_code: Code - (Optional, default {true}) Code to run when credits ends.
Return value
Nothing

Examples

Example 1
[true, { hint "Credits done!"; }] call vn_fnc_credits;