tiny -> Tiny

This commit is contained in:
Sage Vaillancourt 2025-03-19 14:19:05 -04:00
parent 7c69889098
commit 0a71f140dd
4 changed files with 5 additions and 9 deletions

View File

@ -1,4 +1 @@
std = "lua54+love"
stds.project = {
globals = {"tiny"},
}
std = "love"

View File

@ -927,5 +927,4 @@ worldMetaTable = {
end,
}
_G.tiny = tiny
return tiny

View File

@ -1,9 +1,9 @@
require("tiny-debug")
tiny = require("lib/tiny")
Tiny = require("lib/tiny")
require("utils")
require("tiny-tools")
World = tiny.world()
World = Tiny.world()
require("generated/filter-types")
require("generated/assets")

View File

@ -8,7 +8,7 @@ function filteredSystem(name, shape, process, compare)
assert(type(shape) == "table" or type(shape) == "function")
assert(process == nil or type(process) == "function")
local system = compare and tiny.sortedProcessingSystem() or tiny.processingSystem()
local system = compare and Tiny.sortedProcessingSystem() or Tiny.processingSystem()
system.compare = compare
system.name = name
if type(shape) == "table" then
@ -22,7 +22,7 @@ function filteredSystem(name, shape, process, compare)
keys[#keys + 1] = key
end
end
system.filter = tiny.requireAll(unpack(keys))
system.filter = Tiny.requireAll(unpack(keys))
elseif type(shape) == "function" then
system.filter = shape
end