Re: Wanting to learn BGT

2016-04-29 Thread AudioGames . net Forum — Developers room : ross via Audiogames-reflector
Re: Wanting to learn BGT Oh hey, that's so obvious I didn't even think of that haha. I was trying to mimic what it looked like in the Windows Attack tutorial haha, but you're right, that woulddefinitely be easier. Thank you for your help! URL: http://forum.audiogames.net/vi

Re: Wanting to learn BGT

2016-04-29 Thread AudioGames . net Forum — Developers room : lukas via Audiogames-reflector
Re: Wanting to learn BGT That's just about what I was going to suggest, Victorious. :-)I figured out that in most simpler games like sidescrollers, an array to represent the actual board just is not needed at all in most cases. The player can use a single integer to represent

Re: Wanting to learn BGT

2016-04-28 Thread AudioGames . net Forum — Developers room : Victorious via Audiogames-reflector
Re: Wanting to learn BGT An easier way to do it may be to just use a single integer to represent the player's x-coordinate.int x = 0; // current positionint levelSize = 10;if (key_pressed(KEY_RIGHT) && x+1 < levelSize)x++;else if (KEY_PRESSED(KEY_LEFT) &&

Re: Wanting to learn BGT

2016-04-28 Thread AudioGames . net Forum — Developers room : ross via Audiogames-reflector
Re: Wanting to learn BGT @LukasI read through the entire language tutorial, even though I knew most of what it said. I read through all of it just because I wanted to make sure I didn't miss anything I may not have known. The part I find confusing is the little game tutorials. I d

Re: Wanting to learn BGT

2016-04-28 Thread AudioGames . net Forum — Developers room : jawharh via Audiogames-reflector
Re: Wanting to learn BGT Or try the bgt example games. URL: http://forum.audiogames.net/viewtopic.php?pid=258491#p258491 ___ Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com

Re: Wanting to learn BGT

2016-04-28 Thread AudioGames . net Forum — Developers room : lukas via Audiogames-reflector
Re: Wanting to learn BGT Hi Ross,so, if you are familiar with basic programming principles and just have a handful of questions that you couldn't seem to find in the manual, feel free to ask them here. Someone of us should be able to answer them and others who might stumble upon this

Re: Wanting to learn BGT

2016-04-27 Thread AudioGames . net Forum — Developers room : ross via Audiogames-reflector
Re: Wanting to learn BGT @victoriousYeah, I got that. When I said I know a handful of C#, I meant I know enough to not be intimodated by code haha. There's still tons of questions I have that the BGT manual doesn't explain. URL: http://forum.audiogames.net/viewtopic.php?pid=2584

Re: Wanting to learn BGT

2016-04-27 Thread AudioGames . net Forum — Developers room : Victorious via Audiogames-reflector
Re: Wanting to learn BGT BGT is essentially a set of functions and classes put together to make it more convenient and easier to program audiogames. If you already know c#, you shouldn't have much trouble picking it up. URL: http://forum.audiogames.net/viewtopic.php?pid=258341#p2

Re: Wanting to learn BGT

2016-04-27 Thread AudioGames . net Forum — Developers room : cartertemm via Audiogames-reflector
Re: Wanting to learn BGT Hi,I don't know much in BGT as it goes with all the functions and stuff, however I understand the syntax. The language I  know is python at this point, but I've had the same success in learning the base of BGT and python. So like you previously said, y

Wanting to learn BGT

2016-04-26 Thread AudioGames . net Forum — Developers room : ross via Audiogames-reflector
Wanting to learn BGT Hey everyone. So I really want to learn BGT and begin creating audio games. Programming itself isn't unfamiliar to me because I know a handful of CSharp. Here's where my problem arises. I downloaded and installed the BGT manual, but I don't find it helpf