Search found 10 matches
- Wed Feb 22, 2017 4:11 am
- Forum: Libraries and Tools
- Topic: GOOi, an Android-Oriented GUI Library
- Replies: 134
- Views: 190948
Re: GÖÖi, an Android-Oriented GUI Library
Still won't work
- Sun Feb 19, 2017 12:03 am
- Forum: General
- Topic: love2d -developing on android - what code editor to use?
- Replies: 10
- Views: 14838
Re: love2d -developing on android - what code editor to use?
I have been useing quoda for a text editor on Android it highlights Lua and comet as an IED if that helps there is also enlightened I think is the name is an open source code editor
- Fri Feb 10, 2017 6:11 pm
- Forum: Libraries and Tools
- Topic: GOOi, an Android-Oriented GUI Library
- Replies: 134
- Views: 190948
Re: GÖÖi, an Android-Oriented GUI Library
I'm having a problem getting the joystick to work . joyPlane=gooi.newJoy(700,350,100) trigger=gooi.newButton("shoot",700,20) end function love.update(dt) gooi.update player.x=(player.x+joyPlane:xValue()*player.speed) player.y=(player.y+joyPlane:yValue()*player.speed) The joystick won't mov...
- Wed Feb 01, 2017 12:53 am
- Forum: Libraries and Tools
- Topic: GOOi, an Android-Oriented GUI Library
- Replies: 134
- Views: 190948
Re: GÖÖi, an Android-Oriented GUI Library
Would a four way directional pad like the plus directional pads on old NES be possible or maybe a setup in game layout where four buttons are arranged like that. Love it by the way thanks!
- Sun Jan 29, 2017 7:33 pm
- Forum: Games and Creations
- Topic: Game idea checking for interest
- Replies: 13
- Views: 9853
Re: Game idea checking for interest
Im planing on makeing it for fun then seeing where it gose .If it dose end up going some where I'd say donations or if you've ever played cardinal quest 2 you can unlock every thing but you can unlock it now if your willing to pay. However it's not pay to win it's just do you wanna play a few more h...
- Sun Jan 29, 2017 3:52 pm
- Forum: Games and Creations
- Topic: Game idea checking for interest
- Replies: 13
- Views: 9853
Re: Game idea checking for interest
I ment to say it was an idea for a rouge like game or at least in that vein. I personally love a story line in games I play also I know the idea is cliche but I have more written including some technical combat weapon mechanics that is more the set up. You see this is going to be the first game I've...
- Sat Jan 28, 2017 11:19 am
- Forum: Games and Creations
- Topic: Game idea checking for interest
- Replies: 13
- Views: 9853
Re: Game idea checking for interest
Sorry about the grammar I'll edit after I get some sleep I've been up all night but thanks.
- Sat Jan 28, 2017 9:30 am
- Forum: Games and Creations
- Topic: Game idea checking for interest
- Replies: 13
- Views: 9853
Game idea checking for interest
I don't know if this is the right place to post this but I want to get an opinion on this idea. Set in the future but not all lasers and assault rifles because of the compressed oxygen in space stations and on spaceships weapons that would cause combustion like lasers ,tasers and traditional firearm...
- Fri Jan 27, 2017 1:05 am
- Forum: Games and Creations
- Topic: [WIP] shooting game
- Replies: 7
- Views: 6826
Re: [WIP] shooting game
Doesn't seem to work on android "cannot compile shader code' I'm really new at this but if you don't mind I could try to get it to work for Android it looks like it would play well
- Wed Jan 25, 2017 6:20 am
- Forum: Support and Development
- Topic: Useing a function to update player level
- Replies: 1
- Views: 1819
Useing a function to update player level
So im working on a hey RPG and I brought a function to figure my level from my experience points but I don't know how to make it so that it updates My Level globally if that makes any sense --sets the level based on exp function levelCheck(exp,level) repeat c=math.sqrt(exp)-(level*4) if ( c>=1 ) the...