Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_packedfile.c
| Show All 26 Lines | |||||
| #include "RNA_define.h" | #include "RNA_define.h" | ||||
| #include "RNA_enum_types.h" | #include "RNA_enum_types.h" | ||||
| #include "BKE_packedFile.h" | #include "BKE_packedFile.h" | ||||
| #include "rna_internal.h" | #include "rna_internal.h" | ||||
| const EnumPropertyItem rna_enum_unpack_method_items[] = { | const EnumPropertyItem rna_enum_unpack_method_items[] = { | ||||
| {PF_REMOVE, "REMOVE", 0, "Remove Pack", ""}, | |||||
| {PF_USE_LOCAL, "USE_LOCAL", 0, "Use Local File", ""}, | {PF_USE_LOCAL, "USE_LOCAL", 0, "Use Local File", ""}, | ||||
| {PF_WRITE_LOCAL, "WRITE_LOCAL", 0, "Write Local File (overwrite existing)", ""}, | {PF_WRITE_LOCAL, "WRITE_LOCAL", 0, "Write Local File (overwrite existing)", ""}, | ||||
| {PF_USE_ORIGINAL, "USE_ORIGINAL", 0, "Use Original File", ""}, | {PF_USE_ORIGINAL, "USE_ORIGINAL", 0, "Use Original File", ""}, | ||||
| {PF_WRITE_ORIGINAL, "WRITE_ORIGINAL", 0, "Write Original File (overwrite existing)", ""}, | {PF_WRITE_ORIGINAL, "WRITE_ORIGINAL", 0, "Write Original File (overwrite existing)", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| #ifdef RNA_RUNTIME | #ifdef RNA_RUNTIME | ||||
| Show All 36 Lines | |||||