Skip to content

Instantly share code, notes, and snippets.

View blm768's full-sized avatar

Ben Merritt blm768

View GitHub Profile
@blm768
blm768 / .gitignore
Last active August 4, 2023 16:10
MapTool Flatpak manifest
/.flatpak-builder/
@blm768
blm768 / class.lua
Created July 1, 2017 16:16
Lua class code
Class = {}
function Class:new(super)
local class = {}
if super ~= nil then
local class_mt = {__index = super}
setmetatable(class, super)
end
@blm768
blm768 / export_oolite.py
Last active December 23, 2021 21:15
A Blender mesh export script for the game Oolite
#!BPY
"""
Name 'Oolite DAT'
Blender: 263
Group: 'Export'
Tooltip 'Oolite mesh exporter'
"""
bl_info = {