Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #4K
~7K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for Cgm

[QUOTE=Cgm;745871]Hi, I have visual c++ and have recently downloaded the Dark GDK add on. Does anybody know where i could find some tutorials because I am okay with c++ but dont know how to code the graphics. Any help is appreciated Thanks -Chris[/QUOTE] The download of Dark GDK they includes …

Member Avatar for green_frog
0
204
Member Avatar for green_frog

Hi, I'm working on a game in Dark GDK in which i have created a new camera. Is it possible to hide an object in just the newly created camera and be able to view it in the default camera?

0
105
Member Avatar for green_frog

Hi, I'm working on a game and i have created a new camera but i need to hide an object in the newly created camera and still be able to view it in the default camera. Is this possible?

0
52
Member Avatar for tomtetlaw

I have tried this before, i found the best approach is not to use actual bullet object. Just animate the gun firing and put an aimer in the middle of the screen. From here you could test if the aimer is pointing at anything and that the gun has fired, …

Member Avatar for green_frog
0
157
Member Avatar for green_frog

When ever to run the following piece of code in my game it crashes. I have narrowed down the problem to being initiating mEnemies[i] = NULL and mSpaceship.mBullets[c] = NULL. Got no idea why. Please help for(int i=0; i<mEnemies.size(); i++) { // cycle of bullets for(int c=0; c<mSpaceship.mBullets.size(); c++) { …

Member Avatar for mitrmkar
0
167
Member Avatar for smcp

I tried overloading the == operator and found that the following code worked. [CODE] bool operator== (const Employee& temp) { if(&temp == this) return true; bool ret = true; if(getGrossPay() != temp.getGrossPay()) ret = false; return ret; } [/CODE] You didn't need to have two parameters because the object calling …

Member Avatar for mbulow
0
734
Member Avatar for rootchord

When trying to calculate the size of an array use: [CODE] int intArray[] = { 1, 2, 3 }; cout << "The size of intArray is: " << sizeof(intArray) / sizeof(intArray[0]); [/CODE]

Member Avatar for green_frog
0
517
Member Avatar for Lukezzz

I have had that problem before. Its probably because you have run the program before and not closed the application and now your trying to run it again.

Member Avatar for green_frog
0
5K

The End.