83 lines
1.3 KiB
Lua
83 lines
1.3 KiB
Lua
local InGameMoviePlayback =
|
|
{
|
|
Name = "Ingame Movie Playback",
|
|
Type = "System",
|
|
Namespace = "Ingame Movie Playback",
|
|
|
|
Functions =
|
|
{
|
|
{
|
|
Name = "GameMovieFinished",
|
|
Type = "Function",
|
|
|
|
},
|
|
{
|
|
Name = "GetMovieResolution",
|
|
Type = "Function",
|
|
|
|
Returns =
|
|
{
|
|
{ Name = "resolution", Type = "number", Nilable = false },
|
|
},
|
|
},
|
|
{
|
|
Name = "InCinematic",
|
|
Type = "Function",
|
|
|
|
Returns =
|
|
{
|
|
{ Name = "inCinematic", Type = "bool", Nilable = false },
|
|
},
|
|
},
|
|
{
|
|
Name = "OpeningCinematic",
|
|
Type = "Function",
|
|
|
|
},
|
|
{
|
|
Name = "StopCinematic",
|
|
Type = "Function",
|
|
|
|
},
|
|
},
|
|
|
|
Events =
|
|
{
|
|
{
|
|
Name = "CinematicStart",
|
|
Type = "Event",
|
|
LiteralName = "CINEMATIC_START",
|
|
},
|
|
{
|
|
Name = "CinematicStop",
|
|
Type = "Event",
|
|
LiteralName = "CINEMATIC_STOP",
|
|
},
|
|
{
|
|
Name = "MovieCompressingProgress",
|
|
Type = "Event",
|
|
LiteralName = "MOVIE_COMPRESSING_PROGRESS",
|
|
},
|
|
{
|
|
Name = "MovieRecordingProgress",
|
|
Type = "Event",
|
|
LiteralName = "MOVIE_RECORDING_PROGRESS",
|
|
},
|
|
{
|
|
Name = "MovieUncompressedMovie",
|
|
Type = "Event",
|
|
LiteralName = "MOVIE_UNCOMPRESSED_MOVIE",
|
|
Payload =
|
|
{
|
|
{ Name = "filename", Type = "string", Nilable = false },
|
|
},
|
|
},
|
|
},
|
|
|
|
Tables =
|
|
{
|
|
},
|
|
};
|
|
|
|
APIDocumentation:AddDocumentationTable(InGameMoviePlayback);
|