mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-13 23:26:19 +00:00
Use uppercase extensions for editor resources
This commit is contained in:
@@ -258,7 +258,7 @@ void CSceneNode::DrawBoundingBox() const
|
||||
|
||||
void CSceneNode::DrawRotationArrow() const
|
||||
{
|
||||
static TResPtr<CModel> spArrowModel = gpEditorStore->LoadResource("RotationArrow.cmdl");
|
||||
static TResPtr<CModel> spArrowModel = gpEditorStore->LoadResource("RotationArrow.CMDL");
|
||||
spArrowModel->Draw(eNoRenderOptions, 0);
|
||||
}
|
||||
|
||||
|
||||
@@ -536,15 +536,15 @@ void CScriptNode::UpdatePreviewVolume()
|
||||
{
|
||||
case eAxisAlignedBoxShape:
|
||||
case eBoxShape:
|
||||
pVolumeModel = gpEditorStore->LoadResource("VolumeBox.cmdl");
|
||||
pVolumeModel = gpEditorStore->LoadResource("VolumeBox.CMDL");
|
||||
break;
|
||||
|
||||
case eEllipsoidShape:
|
||||
pVolumeModel = gpEditorStore->LoadResource("VolumeSphere.cmdl");
|
||||
pVolumeModel = gpEditorStore->LoadResource("VolumeSphere.CMDL");
|
||||
break;
|
||||
|
||||
case eCylinderShape:
|
||||
pVolumeModel = gpEditorStore->LoadResource("VolumeCylinder.cmdl");
|
||||
pVolumeModel = gpEditorStore->LoadResource("VolumeCylinder.CMDL");
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user