Yeah,I should put more information on this page. Also if you want to know how to embed rom to itch.io, follow this link :
Bitca
19
Posts
5
Topics
170
Followers
114
Following
A member registered Dec 03, 2015 · View creator page →
Creator of
Recent community posts
itch.io Community » General » Release Announcements · Created a new topic The Hero with a Thousand Arms demo is ready
DragonRuby Game Toolkit community · Created a new topic BUG : write_file will not work if you set gameid in metadata.
As far as I know, saturation works like this:
out.r = in.r * r
out.g = in.g * g
out.b = in.b * b
out.a = in.a * a
So the output color is limit to input color, but some time we need over expose effect like:
out.r = in.r + r
out.g = in.g + g
out.b = in.b + b
out.a = in.a
or just tint to single color:
out.r = tint.r
out.g = tint.g
out.b = tint.b
out.a = in.a
Ok, absolute path works, But on andriod where is this file relate to?
For example the tic file is here :
'/sdcard/Android/data/com.nesbox.tic/files/game.tic'
I try put lua file here
'/sdcard/Android/data/com.nesbox.tic/files/game.lua'
and try to:
dofile('./game.lua')
it said file not found.
so where should I put it?