-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(objects): migrate initial batch of files to doc generator
- Loading branch information
1 parent
19052b2
commit 82d84de
Showing
22 changed files
with
558 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
class: | ||
name: "oCCSTrigger" | ||
bases: [ | ||
"zCVob", | ||
"zCTriggerBase", | ||
"zCTrigger", | ||
] | ||
description: | | ||
A special trigger VObject which can start a cutscene. The [zCTriggerBase:triggerTarget] must be the name | ||
of the cutscene (without the extension) to be started. For this to work, the cutscene must already be loaded. | ||
`OnUntrigger` events are ignored by `oCCSTrigger`s. | ||
zenkit: "VCutsceneTrigger" | ||
version: | ||
gothic1: 24577 | ||
gothic2: 24577 | ||
sources: | ||
spacerhilfedatei.sph: "https://wiki.worldofgothic.de/doku.php?id=spacer:hilfedatei" | ||
gothic-library.ru: "http://www.gothic-library.ru/publ/class_occstrigger/1-1-0-530" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
class: | ||
name: "oCInfo" | ||
bases: [] | ||
description: "" | ||
zenkit: "—" | ||
version: | ||
gothic1: 0 | ||
gothic2: 0 | ||
properties: | ||
Told: | ||
type: "bool" | ||
description: "Whether the hero has already been told this info." | ||
default: "FALSE" | ||
version: [1, 2] | ||
save: true | ||
options: | ||
FALSE: "The info has not yet been told." | ||
TRUE: "The info has already been told." | ||
InstName: | ||
type: "string" | ||
description: "The name of the script instance representing this info." | ||
default: "" | ||
version: [1, 2] | ||
save: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
class: | ||
name: "oCInfoManager" | ||
bases: [] | ||
description: "" | ||
zenkit: "—" | ||
version: | ||
gothic1: 0 | ||
gothic2: 0 | ||
properties: | ||
NumOfEntries: | ||
type: "int" | ||
description: "The number of saved [oCInfo] objects." | ||
default: "0" | ||
version: [1, 2] | ||
save: true | ||
oCInfo: | ||
type: "class" | ||
default: "NULL" | ||
version: [1, 2] | ||
save: true | ||
multi: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
class: | ||
name: "oCItem" | ||
bases: | ||
- "zCVob" | ||
- "oCVob" | ||
description: | | ||
Represents an item in the game world. Items are special VObjects which are tied to a script instance which defines | ||
their attributes. They have physics enabled and can be targeted and picked up by the player. | ||
zenkit: "—" | ||
version: | ||
gothic1: 0 | ||
gothic2: 0 | ||
sources: | ||
gothic-library.ru: http://www.gothic-library.ru/publ/class_occstrigger/1-1-0-530 | ||
properties: | ||
itemInstance: | ||
type: "string" | ||
description: "The name of the script instance representing the item." | ||
default: "" | ||
version: [1, 2] | ||
save: false | ||
amount: | ||
type: "int" | ||
description: "Unknown." | ||
default: "" | ||
version: [1, 2] | ||
save: true | ||
flags: | ||
type: "int" | ||
description: "Unknown." | ||
default: "" | ||
version: [1, 2] | ||
save: true |
Oops, something went wrong.