1,009 Recommended Topics
Remove Filter ![]() | |
Having a hard time trying to wrap my head around why my grid system fails, I'm assuming my train of thought is stuck at the moment(akin to writers block). My understanding of grids is while the current cell isn't the last one in the column/row(w/e is horizontal) /*do stuff*/ then … | |
![]() | Note: This question is not towards piracy, only want to learn more about game engines etc & game developing. Like downloaded meaning free ware aka free source. How were they designed like for Example RenderWare is a famous game engine used to create Manhunt, Grand Theft Auto 3, Grand Theft … Game Development video |
I honestly think that the python programming language will take over other languages such as c# and maybe even c++. Why do I say this? Because a python interpreter can easily be embedded in the game. I have also written an engine to make python as fast as C++ (true … Game Development python ![]() | |
So I recently accepted the challange of programming a simple top down style rpg in a week. Progress was going well until I decided to add a custom GUI. Its all very simple for the moment, but I have run into a little bit of a pickle... I have a … Game Development | |
i want to know which is the best language for the game programming? Game Development | |
**I genuinely hope this is the right place to post this question.** Anyways, I play video games alot and I really like them (I know playing video games won't help me make them ) But as I play them I keep on getting the urge to create my own video … Game Development javascript python video | |
![]() | Like for example a person had a Intel Core i7 processor, with 4 TB HD, 64 GB Memory, Nvidia and AMD graphics cards that cost almost 13k. And Uses Windows 7 64 Bit. Can they turn down the graphics of the game and make the atompshere more darker and like … Game Development video ![]() |
Hi after some months learing basics of C++, today i started by creating a simple game but i have problem two problems 1- `checkwin()` doesn't work properly 2- the code goes glitchy if i press Enter before choosing a block sorry for my english #include <iostream> using namespace std; char … Game Development | |
Hi, all. I'm have a class EnemyController with a function Spawn(...) that instantiates a new object of the appropriate type. I want to call Spawn from somewhere like my TileMap class to create a new Enemy in my tile collision method. Here's what I have so far... class EnemyController { … Game Development | |
So i have a code for a menu and i am facing some problem.. code:- do { ch = getch(); switch(ch) { case 'W': case 'w': system("CLS"); cout<<" MOD v1.0\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"; cout << " --> PLAY\n\n"; cout<<" HELP\n\n"; cout<<" EXIT\n\n"; break; case 'E': case 'e': system("CLS"); cout<<" MOD v1.0\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"; cout << … | |
![]() | Hey guys I'm finishing off a project for an assignment and have run into an error I can't resolve. Here is a link to a video showing the error... https://www.dropbox.com/s/25ajb0mc5p4a3a9/Tilemap%20Error.mov The class throwing the error has been working in other projects or so I thought, but has been modified a … Game Development video ![]() |
Hello guys :) I hope you are well. I have a problem, I am trying to build a 2D platformer and I am stuck when it comes to building the levels. I found a tutorial on how to build a tiling engine and I just got completely confussed. I am … Game Development c++ programming-construct | |
Need a proper development model for a Car Racing Game.Can any one provide it.... Game Development | |
Hi All, I have a game which I'm implementing parallax scrolling which is currently looping infinite. Is there a way I can pause the loop for x amount of time, or even stop the loop completely after x amount of time. Here a bit of my code so far: public … Game Development | |
Hey guys and girls, I have to code 3D water, and I can't think of an Idea. I'm currently using Unity and reading stuff for meshes in Unity and to be honest, I'm not getting anywhere far with the Unity mesh architecture, but I'll get there... (ASAP) So my problem … Game Development | |
Hi friends..! Need little help here to choose a language to code my 2nd year project assignment. We are given to develop a 'Tank game' which will ultimately play over a network. maximum four players can join the game, there is a server application runnig on a server machine and … Game Development artificial-intelligence-llm gaming web-design | |
I want to start programming PC Games that use lots of graphics. Which Programming language or languages are best suited for computer graphics programming and WHY?:) Game Development | |
Hello! :) It's my first time here. I don't know why GLSL is better to Nvidia Cg! :( I'm working on skeletal animation in GPU. With Nvidia Cg it's just fine, but when I try to use GLSL, just don't work! I'm using a Nvidia card in my new computer. … Game Development | |
Hi everyone, I am a first year computer-science major and in our software engineering module we have been assigned to make a game(I have never built one before other than a tic-tac toe game that I made to waste time on). We are going to use a game building kit/platform … Game Development | |
i'm found this piece of code on internet about how to load multi texture in opengl es 2.0: // // Book: OpenGL(R) ES 2.0 Programming Guide // Authors: Aaftab Munshi, Dan Ginsburg, Dave Shreiner // ISBN-10: 0321502795 // ISBN-13: 9780321502797 // Publisher: Addison-Wesley Professional // URLs: http://safari.informit.com/9780321563835 // http://www.opengles-book.com // … Game Development opengl | |
I have a c++ game that i made and i was wondering how i would make it so that i could add graphics, or just use the same basic concept of the game and just put those into a fresh game that i make with graphics. well my question is … | |
Hello, I'm developing an application in Unity/C#, a social application, where you can meet friends, post messages, chat, and so on. I'm not calling this a "game" because I intend this to be something where you don't need to shoot, or destroy, or earn money, or all other game stuff. … Game Development c++ | |
i'm using Soil library to load textures,here is my function to do this: GLuint LoadTexture(std::string file) { GLuint texture; texture = SOIL_load_OGL_texture( file.c_str(), SOIL_LOAD_AUTO, SOIL_CREATE_NEW_ID, SOIL_FLAG_POWER_OF_TWO | SOIL_FLAG_MIPMAPS | SOIL_FLAG_MULTIPLY_ALPHA | SOIL_FLAG_COMPRESS_TO_DXT | SOIL_FLAG_DDS_LOAD_DIRECT | SOIL_FLAG_INVERT_Y ); glBindTexture(GL_TEXTURE_2D, texture); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); return texture; } and i … Game Development | |
![]() | I want to start game developing but I need help choosing what programming language to learn. I already tryed Lua,Java,C++ but not Rudy and Python... So here is my question, I need the pros and cons on Ruby and Python and your recommendation. I need something I feel comfortable with. Game Development python |
So I actually posted this in the C# section, but despite peoples best efforts, all all the help there, the problem is still not solved. Background: Im making a game in xna/c# (Who isnt these days). For collision detection, I though I would use rectangles and lists. My thought process … Game Development programming-construct | |
How do the numbers in a matrix relate to coordinates in 3D space. I've looked at a ton of tutorials for an answer but I still haven't come to an answer. They explain mainly the math which I try to use to answer my question, but I can't come to … Game Development image matrix-multiplication | |
![]() | |
| |
As a gamer myself, I thought that last year was a pretty good one. After all, not only did I get to play both GTA V and Call of Duty: Ghosts (indeed, I'm still playing it and working my may through the prestige levels) but if I had enough spare … Game Development cybersecurity gaming virus-malware | |
I know this may seem to be beating the proverbial dead horse, however I haven't seen anything specific to what language is best to terraforming and generation of a basic sandbox. Any suggestions as to what languages or even programs that can be tied into game development for interaction between … Game Development gaming | |
I am in the sixth grade and have come up with an idea for a game. Of course the problem is I don't have the experience to do this and would like to get some advice on how i might pursue my ideas. If I can get positive feedback on … Game Development | |
Hello. First time posting on these forums as I am really stuck on my code. The language I am using is GML (Game Maker Language) and the program Game Maker: Studio. As I could not get any help on GM forums I am seeking help elsewhere. The game I am … Game Development | |
Which language is the most widely used, especially one that is used in game development companies? Also which is hot? which is easy and whats the current trend in game development? Also, please let me know which tech. is good for graphics? where should i go for good graphics? .Net, … Game Development | |
Hey guys :) Can anyone show me a tutorial for game development in C++. Btw I'm on a mac so I can't go to the DirectX tutorial. Can you please avoid www.cprogramming.com because I dont like it. Thanx anyways :) Game Development c++ | |
So i'm making an rpg game in xna. I can move my player around the screen, however it can also move off the screen. How can I implament a simple camera that will follow the player and prevent them from moving off of the screen? I only need it to … Game Development c# | |
i make m3d modelling in AUTODESKMAYA and animation i would like to know how can create with a small action game (video game) waht language i must use what tolls i must use, is it possible my mind??? Game Development | |
So im making a simple RPG using c# and xna. For collision, i am using a text file that contains data about whether a tile is passable or not. I iterate through them and create rectangles based on the position of the 'bad' tile in the text file. I then … Game Development c# | |
SO im writing a simple map editor using c# and xna. Ive just finished with xml serilization, but when i compile i get the following error: "Unable to generate a temporary class (result=1). error CS0016: Could not write to output file 'c:\Users\Chris\AppData\Local\Temp\1vw3tjxm.dll' -- 'Access is denied. ", what does this … Game Development | |
Hi., Can we share an image from photo library in ipad through addthis sdk facebook or twitter sharing? Game Development | |
Hi, I am trying to execute a code http://nehe.gamedev.net/tutorial/playing_avi_files_in_opengl/23001/ lesson35 linux code(ubuntu 12.04) i solved all the errors except the warning : deprecated conversion from string constant to ‘char*’ but when i try to execute the code from terminal only a window with white screen is my output with below … Game Development | |
Hello, I'm new to these forums and I was wondering if any of you guys know a programmming language that is more designed for Video Games than casual software. I want to make a basic 2D platformer or maybe a simeple RPG that has a moving sprite. I have tried … Game Development gaming | |
Hello all, I apoligise if this is the incorrect forum but it seemed to be most relevant. Basically I am doing some statistical analysis on game data using standard deviation and upon analysing the data I seem to have forgotten how to work out my percentages so here is to … Game Development | |
Is this possible to develop mobile Video Games by own with some programming language?? Game Development | |
According to research covering more than 100 universities across the globe from earlier this year, 58% of the academic leaders questioned believed COBOL programming should be on the curriculum. Yet only 27% could confirm that was the case, and only 18% had COBOL as a core part of the course … Game Development gaming | |
When [Exponential Interactive](http://exponential.com/), an advertising intelligence provider, analysed the actual behaviour of more than two million Brits viewing Grand Theft Auto content online, the [results](http://meteorpublicrelations.com/wp-content/uploads/2013/10/GTA-insights-from-Exponential.jpg) were rather surprising.  Here are the key conclusions: The GTA audience are 33% more likely than the average internet user to have children; … Game Development gaming | |
Ok, I'm starting a Game Developing Company [I]<<snip>>[/I] And we are making an MMORPG Engine for our online game, Gods Online. I need any help at all, I have Notepad ++ as a Compiler. I have seen it been done before in VB6 [I]<<snip>>[/I] Basically, a server - Client Port … Game Development c++ | |
hello dear members, i am a student of bachelors degree in computer science and finally i have to choose and develop a project as my final project. i am planning to replicate a game, like jetpack joyride (as i am seeking a career in game programming). i think i have … Game Development |
The End.