building destruction particles

This commit is contained in:
Michael Campbell 2026-04-15 01:14:14 -04:00
parent dba09165e8
commit afc0aab441
127 changed files with 27285 additions and 240 deletions

View file

@ -0,0 +1,12 @@
# Simple logger wrapper
extends Object
class_name VoronoiLog
const prefix = "[VoronoiShatter] "
static func err(message: String):
printerr(prefix + message)
static func log(message: String):
print(prefix + message)