This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # used this on an ubuntu docker image with `apt install python3-libfshfs` | |
| import pyfshfs | |
| import os | |
| def export_file(entry, dest): | |
| print(f'export {dest}') | |
| dir = os.path.dirname(dest) | |
| if not os.path.exists(dir): | |
| os.makedirs(dir) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // plugin for demonstrating bevy v0.13 system stepping using egui interface | |
| // Released under the MIT License | |
| use std::collections::HashMap; | |
| use bevy::{ | |
| app::MainScheduleOrder, | |
| ecs::schedule::{InternedScheduleLabel, NodeId, ScheduleLabel, Stepping}, | |
| prelude::*, | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # work-around for https://projects.blender.org/blender/blender/issues/140819 | |
| bl_info = { | |
| "name": "Copy Collection Custom Properties", | |
| "description": "Copy Collection custom properties when Collection instances are created", | |
| "author": "David M. Lary", | |
| "version": (0.2,4), | |
| "blender": (2, 80, 0), | |
| "category": "Development" | |
| } |
OlderNewer