Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/simulation.cc
| Show First 20 Lines • Show All 146 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_SIM = { | IDTypeInfo IDType_ID_SIM = { | ||||
| /* id_code */ ID_SIM, | /* id_code */ ID_SIM, | ||||
| /* id_filter */ FILTER_ID_SIM, | /* id_filter */ FILTER_ID_SIM, | ||||
| /* main_listbase_index */ INDEX_ID_SIM, | /* main_listbase_index */ INDEX_ID_SIM, | ||||
| /* struct_size */ sizeof(Simulation), | /* struct_size */ sizeof(Simulation), | ||||
| /* name */ "Simulation", | /* name */ "Simulation", | ||||
| /* name_plural */ "simulations", | /* name_plural */ "simulations", | ||||
| /* translation_context */ BLT_I18NCONTEXT_ID_SIMULATION, | /* translation_context */ BLT_I18NCONTEXT_ID_SIMULATION, | ||||
| /* flags */ 0, | /* flags */ IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| /* init_data */ simulation_init_data, | /* init_data */ simulation_init_data, | ||||
| /* copy_data */ simulation_copy_data, | /* copy_data */ simulation_copy_data, | ||||
| /* free_data */ simulation_free_data, | /* free_data */ simulation_free_data, | ||||
| /* make_local */ nullptr, | /* make_local */ nullptr, | ||||
| /* foreach_id */ simulation_foreach_id, | /* foreach_id */ simulation_foreach_id, | ||||
| /* foreach_cache */ nullptr, | /* foreach_cache */ nullptr, | ||||
| /* owner_get */ nullptr, | /* owner_get */ nullptr, | ||||
| Show All 22 Lines | |||||