(feat/API) replace Blizzard_APIDocumentation with Wrath Private Data (#72)

This commit is contained in:
NoM0Re
2025-10-01 22:24:58 +02:00
committed by GitHub
parent 29e6f62f54
commit 517f15c7bd
392 changed files with 29576 additions and 43596 deletions
@@ -0,0 +1,82 @@
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);