Added DeleteAn8() function

This commit is contained in:
n00b
2025-01-31 19:35:19 -05:00
parent eab4029642
commit acdc78a149
17 changed files with 1020 additions and 976 deletions

View File

@@ -172,6 +172,14 @@ std::string rc_getAN8SceneName(int an8_id, int scene_num)
return rc_an8[an8_id].project.scenes[scene_num].name;
}
void rc_deleteAN8(int an8_id)
{
if(an8_id < 0 || an8_id >= rc_an8.size())
return;
rc_an8[an8_id].active = false;
}
//delete mesh
void rc_deleteMesh(int mesh_id)
{