Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/world.c
| Show First 20 Lines • Show All 184 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_WO = { | IDTypeInfo IDType_ID_WO = { | ||||
| .id_code = ID_WO, | .id_code = ID_WO, | ||||
| .id_filter = FILTER_ID_WO, | .id_filter = FILTER_ID_WO, | ||||
| .main_listbase_index = INDEX_ID_WO, | .main_listbase_index = INDEX_ID_WO, | ||||
| .struct_size = sizeof(World), | .struct_size = sizeof(World), | ||||
| .name = "World", | .name = "World", | ||||
| .name_plural = "worlds", | .name_plural = "worlds", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_WORLD, | .translation_context = BLT_I18NCONTEXT_ID_WORLD, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = world_init_data, | .init_data = world_init_data, | ||||
| .copy_data = world_copy_data, | .copy_data = world_copy_data, | ||||
| .free_data = world_free_data, | .free_data = world_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = world_foreach_id, | .foreach_id = world_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| Show All 25 Lines | |||||