Search found 5 matches
- Sun May 10, 2015 4:34 pm
- Forum: Support and Development
- Topic: Addon/Mod Loader Help
- Replies: 8
- Views: 5748
Re: Addon/Mod Loader Help
Just as a general comment about adding Mod support, it usually isn't enough to just load a script and leave it to the mod makers to handle compatibility. You're going to have to commit to a mod API, i.e. a published list of functions that the mod authors will use to add their features. As a for ins...
- Fri May 08, 2015 8:20 pm
- Forum: Support and Development
- Topic: Addon/Mod Loader Help
- Replies: 8
- Views: 5748
Re: Addon/Mod Loader Help
Now:Robin wrote: [wiki]love.filesystem.enumerate[/wiki]
[wiki]love.filesystem.getDirectoryItems[/wiki]
- Fri May 08, 2015 7:45 pm
- Forum: Support and Development
- Topic: Addon/Mod Loader Help
- Replies: 8
- Views: 5748
Addon/Mod Loader Help
Hello, I would Like to know how to Add Addon/Mod Support for my game using A fused game and the AppData Folder Code ( Without being Fused ) function LoadAddons() for file in io.popen("dir /b addons"):read("*all"):gmatch("(.-)\n") do if file ~= "." and file ~= ...
- Tue Apr 28, 2015 7:52 pm
- Forum: Support and Development
- Topic: Random Generated World
- Replies: 3
- Views: 2453
Re: Random Generated World
What type of map are you using EX: map = { 1,4,3,2 }, Tiled? If you are using map = {} then if you want just the first 3 layers to be random then do this tile = {} tile[1] = "path.to.tile.image" tile[2] = "path.to.tile.image" tile[3] = "path.to.tile.image" tile[4] = &qu...
- Mon Apr 27, 2015 8:31 pm
- Forum: Support and Development
- Topic: [HELP] 2.5D Camera + Player Movment for isometric game?
- Replies: 0
- Views: 1217
[HELP] 2.5D Camera + Player Movment for isometric game?
How would I make the camera look and scroll in 2.5D like dota2 and How would I make the player move Like in Dota2: up,down,left, and right while doing 2.5D Angles?
Please Help.
Please Help.