This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--# Main | |
-- Particle Effect | |
-- Use this function to perform your initial setup | |
function setup() | |
displayMode(FULLSCREEN) | |
--to get ghost trails | |
backingMode(RETAINED) | |
--b=Backup("Particle Fireworks Ver 002") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- Cache.lua - this is a SUBSET of HTTPLoader. | |
-- | |
Cache = class() | |
function Cache:loadStringData(name) | |
return readLocalData(name) | |
end | |
function Cache:saveStringData(name,cache) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- CiderControls.lua | |
-- | |
--CiderControls | |
--# Frame | |
Frame = class() | |
-- Frame | |
-- ver. 1.5 |