Simple python script which creates a nice programming environment and file structure to work with.
Requires Python 2.7
Source w/o data
Download v0.1
Search found 7 matches
- Sun Apr 07, 2013 3:53 pm
- Forum: Libraries and Tools
- Topic: Project Manager
- Replies: 0
- Views: 1738
- Sun Apr 07, 2013 3:24 pm
- Forum: Support and Development
- Topic: Making an Exe out of a .love file
- Replies: 5
- Views: 3648
Re: Making an Exe out of a .love file
Huh, that's an odd way to handle it, but certainty correct and tested.
- Sun Apr 07, 2013 2:06 pm
- Forum: Support and Development
- Topic: Making an Exe out of a .love file
- Replies: 5
- Views: 3648
Making an Exe out of a .love file
In http://www.love2d.org/wiki/Game_Distribution , the wiki states that to create a .exe out of a .love file, you run the line "copy /b love.exe+game.love game.exe" in the command line.
What exactly is "copy /b love.exe+game.love game.exe" doing to produce an executable?
What exactly is "copy /b love.exe+game.love game.exe" doing to produce an executable?
- Thu Jul 26, 2012 9:39 am
- Forum: Support and Development
- Topic: Distributing for linux... Runs the game slave.
- Replies: 7
- Views: 4764
Re: Distributing for linux... Runs the game slave.
Upon renaming the binary to asdfghjkl, nothing has changed.bartbes wrote:There's been some known issues with folder having the same name as the executable
The .love file runs correctly.bartbes wrote:if not, are you sure your .love is packaged correctly?
- Thu Jul 26, 2012 4:57 am
- Forum: Support and Development
- Topic: Distributing for linux... Runs the game slave.
- Replies: 7
- Views: 4764
Re: Distributing for linux... Runs the game slave.
I'd advise against distributing games on linux that way. The biggest problem you'd encounter is that the version you built the game on (say Ubuntu 12.04) almost certainly wouldn't run on Fedora or Arch, or even Ubuntu 11.10. It'd be similar to how things made for Windows7 probably wouldn't run on W...
- Wed Jul 25, 2012 10:44 pm
- Forum: Support and Development
- Topic: What's bad about a Canvas?
- Replies: 14
- Views: 10726
Re: What's bad about a Canvas?
No linux OS can use the canvas, to my knowledge.
I'm running Ubuntu 12.04 and as soon as the canvas is used, I will get an error, same for Fedora and Lindows. On Windows, I have no trouble.
I'm running Ubuntu 12.04 and as soon as the canvas is used, I will get an error, same for Fedora and Lindows. On Windows, I have no trouble.
- Wed Jul 25, 2012 9:48 pm
- Forum: Support and Development
- Topic: Distributing for linux... Runs the game slave.
- Replies: 7
- Views: 4764
Distributing for linux... Runs the game slave.
Build.sh #!/bin/bash zip -r ${PWD##*/}.love *.png *.lua Package.sh #!/bin/bash cat /usr/bin/love ${PWD##*/}.love > ${PWD##*/} && chmod +x ${PWD##*/} main.lua require "TLpath" require "TLfrez" function love.draw() love.graphics.print("Hello World", 0, 0) TLfres.t...