Added skydome support.

This commit is contained in:
Justin Marshall
2026-05-24 11:54:07 -07:00
parent 3242531044
commit 029fd186dc
18 changed files with 281 additions and 37 deletions
@@ -68,6 +68,15 @@ const char *idEditorEntity::GetKeyString(int iIndex)
return NULL;
}
const idMaterial* idEditorEntity::GetKeyMaterial(const char* key, const char* defaultMaterial) {
const char* value = ValueForKey(key);
if (value == NULL || value[0] == 0) {
value = defaultMaterial;
}
return declManager->FindMaterial(value, false);
}
/*
=======================================================================================================================