You should consider joining our Discord to ask for support.
We created a support channel using the new Discord Forum feature!
You can also visit our new website, it has a help section in English and French
Line 135 - 143
def update_counters @autotiles.each_with_index do |autotile, index| next unless autotile next if autotile.height <= 32 frame_count = autotile.height / 32 @autotile_counter[index + 1] = (@autotile_counter[index + 1] + 1) % frame_count end end
def update_counters
@autotiles.each_with_index do |autotile, index|
next unless autotile
next if autotile.height <= 32
frame_count = autotile.height / 32
@autotile_counter[index + 1] = (@autotile_counter[index + 1] + 1) % frame_count
end