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
| watch_file flake.nix flake.lock | |
| use flake || use nix |
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
| Class = {} | |
| function Class:new(super) | |
| local class = {} | |
| if super ~= nil then | |
| local class_mt = {__index = super} | |
| setmetatable(class, super) | |
| end |
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
| #!BPY | |
| """ | |
| Name 'Oolite DAT' | |
| Blender: 263 | |
| Group: 'Export' | |
| Tooltip 'Oolite mesh exporter' | |
| """ | |
| bl_info = { |