Changeset 3216
- Timestamp:
- 01/16/10 14:59:50 (8 weeks ago)
- Location:
- trunk/lua
- Files:
-
- 3 modified
-
lib.packetvideo.lua (modified) (1 diff)
-
lib.terrain.multitex.lua (modified) (1 diff)
-
main.lua (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lua/lib.packetvideo.lua
r3179 r3216 30 30 gPacketVideoNoPlaybackPackets[kPacket_Logout] = true -- logout 31 31 32 gPacketVideoFileName_folderpath = "../videos/"33 32 gPacketVideoFileName_prefix = gPacketVideoFileName_folderpath.."myvid." 34 33 gPacketVideoFileName_postfix = ".ipv" -
trunk/lua/lib.terrain.multitex.lua
r2758 r3216 174 174 local imgAtlas = CreateImage() 175 175 pTexAtlas:MakeImage(imgAtlas) 176 imgAtlas:SaveAsFile( "../data/tmp/terrain_tex_atlas.png")176 imgAtlas:SaveAsFile(gTempPath.."terrain_tex_atlas.png") 177 177 end 178 178 local sGroundTexName = pTexAtlas:MakeTexture() -
trunk/lua/main.lua
r3215 r3216 21 21 gDesktopDir = gConfigPath.."desktop/" -- old was data/desktop/ 22 22 gTempPath = datapath.."tmp/" 23 gPacketVideoFileName_folderpath = gMainWorkingDir.."videos/" 23 24 gSecondsSinceLastFrame = 0 24 25 … … 45 46 gMacroPathFile = gConfigPath..gMacroFile 46 47 gDesktopDir = gConfigPath.."desktop/" 48 gPacketVideoFileName_folderpath = gHomeIrisPath.."videos/" -- todo : text='will be saved as .ipv files in iris/videos/' 47 49 48 50 … … 54 56 mkdir(gConfigPath) 55 57 mkdir(gDesktopDir) 58 mkdir(gPacketVideoFileName_folderpath) 56 59 CopyDir(gMainWorkingDir.."config/",gConfigPath) 57 60 end
