Search found 31 matches
Re: Game Idea
My project I'm working on at the moment is similar to Terraria, it's called uCreate (the u because it'll work on ubuntu :P) and the whole project started because I can't play Terraria on my computer (got it set up and everything, THEN XNA tells me my gfx card isn't supported T_T ) Therefore I defina...
- Fri Aug 12, 2011 2:28 pm
- Forum: Support and Development
- Topic: Automated tile map creation?
- Replies: 4
- Views: 2734
Re: Automated tile map creation?
If you want it written to .lua files, you can do that too with love.filesystem.write. .lua-files written that way can be required. Hmm that might be incredibly useful, Instead of rendering a 2000 by 1000 map, I could do it in 'chunks' of 20x20 randomly generated tiles, patched together to make the ...
- Fri Aug 12, 2011 1:37 am
- Forum: Support and Development
- Topic: Automated tile map creation?
- Replies: 4
- Views: 2734
Automated tile map creation?
Hey everyone, it's me again :emo: So, I've managed to successfully make the random map generator, which makes variables ma[1-21]-mt[1-21] so I've got a 21w 20h map. That's all presented on screen using love.draw, which is all fine - That's automated and the least of my worries. My worry is this: map...
- Thu Aug 11, 2011 3:14 pm
- Forum: Support and Development
- Topic: about drawing images
- Replies: 9
- Views: 3808
Re: about drawing images
There's no hardware drivers avaliable for my machine >.< Advent 4211 (rebranded MSI wind) I was looking for ways to just download the drivers from a website and use them with ubuntu, but meh... it works, that's all that matters. From what PCWorld told me, my computer doesn't have a proper graphics c...
- Thu Aug 11, 2011 2:54 pm
- Forum: General
- Topic: Framework or engine?
- Replies: 24
- Views: 9791
Re: Framework or engine?
Haha damn, there's no like button in forums... *like* xP
- Thu Aug 11, 2011 5:21 am
- Forum: Support and Development
- Topic: about drawing images
- Replies: 9
- Views: 3808
Re: about drawing images
Hmm I've never encountered this PO2 Syndrome, possibly because I always use numbers that are powers of two instinctively, seems to make more sense to me... that a bad thing? Also, does this PO2S affect only LOVE/Lua or is it applicable to other things such as C+ e.c.t.? It's interesting to say the l...
- Thu Aug 11, 2011 12:53 am
- Forum: General
- Topic: Framework or engine?
- Replies: 24
- Views: 9791
Re: Framework or engine?
So it's a....its actually a standalone application and it uses a scripting language; its API is more like a framework though.
FRENGINE?
FRAMEGINE?
- Thu Aug 11, 2011 12:02 am
- Forum: Support and Development
- Topic: [SOLVED]Surely there's a better way of storing[...]
- Replies: 10
- Views: 4330
Re: Surely there's a better way of storing my random variabl
Sweet, thanks a lot guys
- Wed Aug 10, 2011 11:55 pm
- Forum: Support and Development
- Topic: [SOLVED]Surely there's a better way of storing[...]
- Replies: 10
- Views: 4330
Re: Surely there's a better way of storing my random variabl
(0 0.3] is 30%, (0.3 0.9] is 60%, (0.9 1.0] is 10% Aah, that's quite complex (as much as I can understand haha) but is it somewhat along the lines of: 0 TO 0.3 is 30% 0.3 TO 0.9 is 60% (0.9-0.3=0.6) 0.9 TO 1.0 is 10% (1.0-0.9=0.1) Something like that? So if I had 5 variables, rather than the three ...
- Wed Aug 10, 2011 11:36 pm
- Forum: Support and Development
- Topic: [SOLVED]Surely there's a better way of storing[...]
- Replies: 10
- Views: 4330
Re: Surely there's a better way of storing my random variabl
Was that meant to be 0.6? And aah thanks a million, you've really helped me out guys! Thankselseif random<=0.9 then