-
-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
//* This file is explicitly licensed under the MIT license. *// | ||
//* Copyright (c) 2023 Citadel Station developers. *// | ||
|
||
//* material part enums *// | ||
|
||
/// material part key that a single-material-part object is treated as having | ||
#define MATERIAL_PART_DEFAULT "structure" | ||
|
||
//* material id enums for lookups during materials init of an entity *// | ||
|
||
/// material ID to pass to Initialize() procs for "erase the default material of this slot" | ||
#define MATERIAL_ID_ERASE "___ERASE___" | ||
|
||
//* material_parts var - defaults *// | ||
|
||
/// material_parts value for object does not use material parts system | ||
#define MATERIAL_DEFAULT_DISABLED "DISABLED" | ||
/// material_parts value for object uses hardcoded vars / overrides the abstraction API | ||
#define MATERIAL_DEFAULT_ABSTRACTED "ABSTRACTED" | ||
/// material_parts value for object has a single material but it's absent | ||
#define MATERIAL_DEFAULT_NONE null | ||
/// material ID to pass to Initialize() procs for "erase the default material of this slot" | ||
#define MATERIAL_ID_ERASE "___ERASE___" |
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