-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add entityDef stubs for entities from misc.def and info.def
they only contain the "spawnclass"/"inherit" properties specific to the entity and generic placeholder properties for "editor_usage", "editor_color", "editor_maxs" and "editor_mins". to be replaced later by proper definitions with the missing properties, proper descriptions etc Updated COPYING.txt
- Loading branch information
1 parent
454ba3c
commit 23e9d3f
Showing
4 changed files
with
159 additions
and
30 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 |
---|---|---|
@@ -1,39 +1,65 @@ | ||
// recreated definitions of entities of Doom3, mostly from misc.def | ||
// (C) 2011-2015 contributors of d3-base-assets, licensed under WTFPL v2 | ||
|
||
entityDef worldspawn { | ||
"editor_color" "0 .5 .8" | ||
"editor_mins" "?" | ||
"editor_maxs" "?" | ||
"no_stamina" "1" | ||
"spawnclass" "idWorldspawn" | ||
"spawnclass" "idWorldspawn" | ||
|
||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
"editor_maxs" "?" | ||
"editor_mins" "?" | ||
"editor_color" "0 .5 .8" | ||
|
||
"no_stamina" "1" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
entityDef light { | ||
"editor_color" "0 1 0" | ||
"editor_mins" "-8 -8 -8" | ||
"editor_maxs" "8 8 8" | ||
"spawnclass" "idLight" | ||
} | ||
"spawnclass" "idLight" | ||
|
||
entityDef info_player_start { | ||
"editor_color" "1 0 0" | ||
"editor_mins" "-16 -16 0" | ||
"editor_maxs" "16 16 64" | ||
"editor_showangle" "1" | ||
"spawnclass" "idPlayerStart" | ||
} | ||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
entityDef info_player_deathmatch { | ||
"editor_color" "1 0 0" | ||
"editor_mins" "-16 -16 0" | ||
"editor_maxs" "16 16 64" | ||
"editor_showangle" "1" | ||
"spawnclass" "idPlayerStart" | ||
"editor_color" "0 1 0" | ||
"editor_mins" "-8 -8 -8" | ||
"editor_maxs" "8 8 8" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
entityDef player_doommarine { | ||
"spawnclass" "idPlayer" | ||
"scriptobject" "player" | ||
"spawnclass" "idPlayer" | ||
"scriptobject" "player" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
entityDef player_doommarine_mp { | ||
"inherit" "player_doommarine" | ||
"inherit" "player_doommarine" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
entityDef speaker { | ||
"spawnclass" "idSound" | ||
|
||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
"editor_color" "0.0 0.5 0.8" | ||
"editor_maxs" "8 8 8" | ||
"editor_mins" "-8 -8 -8" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
entityDef text { | ||
"spawnclass" "idTextEntity" | ||
|
||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
"editor_color" "0.0 0.5 0.8" | ||
"editor_maxs" "8 8 8" | ||
"editor_mins" "-8 -8 -8" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} |
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,94 @@ | ||
// recreated definitions of entities of Doom3, originally in info.def and misc.def | ||
// (C) 2015 Daniel Gibson and Yamagi Burmeister, licensed under WTFPL v2 | ||
|
||
// from info.def: | ||
|
||
entityDef info_player_start { | ||
"spawnclass" "idPlayerStart" | ||
|
||
"editor_usage" "TODO!" | ||
|
||
"editor_color" "1 0 0" | ||
"editor_maxs" "16 16 64" | ||
"editor_mins" "-16 -16 0" | ||
"editor_showangle" "1" | ||
|
||
|
||
// TODO: still incomplete | ||
} | ||
|
||
entityDef info_player_deathmatch { | ||
"spawnclass" "idPlayerStart" | ||
|
||
"editor_usage" "TODO!" | ||
|
||
"editor_color" "1 0 0" | ||
"editor_maxs" "16 16 64" | ||
"editor_mins" "-16 -16 0" | ||
|
||
"editor_showangle" "1" | ||
|
||
// TODO: still incomplete | ||
} | ||
|
||
entityDef info_player_teleport { | ||
"spawnclass" "idPlayerStart" | ||
|
||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
"editor_color" "0.0 0.5 0.8" | ||
"editor_maxs" "8 8 8" | ||
"editor_mins" "-8 -8 -8" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
// from misc.def: | ||
|
||
entityDef info_location { | ||
"spawnclass" "idLocationEntity" | ||
|
||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
"editor_color" "0.0 0.5 0.8" | ||
"editor_maxs" "8 8 8" | ||
"editor_mins" "-8 -8 -8" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
entityDef info_locationSeparator { | ||
"spawnclass" "idLocationSeparatorEntity" | ||
|
||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
"editor_color" "0.0 0.5 0.8" | ||
"editor_maxs" "8 8 8" | ||
"editor_mins" "-8 -8 -8" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
entityDef info_vacuum { | ||
"spawnclass" "idVacuumEntity" | ||
|
||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
"editor_color" "0.0 0.5 0.8" | ||
"editor_maxs" "8 8 8" | ||
"editor_mins" "-8 -8 -8" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} | ||
|
||
entityDef info_vacuumSeparator { | ||
"spawnclass" "idVacuumSeparatorEntity" | ||
|
||
"editor_usage" "TODO: Meaningful description, this is a stub!" | ||
|
||
"editor_color" "0.0 0.5 0.8" | ||
"editor_maxs" "8 8 8" | ||
"editor_mins" "-8 -8 -8" | ||
|
||
// TODO: This is just a stub - add proper entity definition and explanation! | ||
} |