🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Advertisement

For Beginners

1 members
jpetrie
June 22, 2017 02:05 AM

Welcome to GDNet’s For Beginners discussion forum! If you’re new to game development looking for some help navigating the many choices and challenges of the field, this is the place for you. If you’re a seasoned pro looking to pass on some of your wisdom to the next generation, this is a great p…

36,740 views
RimMaalaoui
June 25, 2024 09:20 PM

Hello, I'm not a game developer, but today I thought about the possibility of creating a game, but it scares me because I don't have any mathematical knowledge, I can only count using my hands, so I'm very bad at math. But I want to make a game for various personal reasons, is it possible to make a…

1,346 views
acron
June 19, 2024 06:15 AM

For context I've got no programming experience and hope to create a basic 2D game with a few minigames and puzzles for the player to solve. I'm also on a time crunch and have got a limited amount of time that I can dedicate to learning the software. Also it's worth mentioning that this is for a sch…

2,226 views
ShapeSpheres
June 11, 2024 09:35 PM

Hello, sorry if this is a dumb thread to make, but I finished the tutorial on learnopengl for adding skeleton animations and in their code to load an animation they pass the animation path and model:

Animation danceAnimation("Assets/Animations/Ymca Dance.dae", myModel);

This seems to be necessary for…

3,832 views
Xanderk
June 10, 2024 11:16 AM

I'm currently doing a project for school, where our assignment is to develop an educational game. I've worked out the idea and know pretty much what I need to be in the game, but I dont have the right skills to actually develop the game. 

A short summary of the game: It's a game that focusses o…

3,016 views
pbivens67
June 01, 2024 11:43 PM

I am trying to print out the union of two sets. Here is my code so far.

#include <iostream>
#include <set>

using namespace std;

set <int> set_union(set<int> a, set<int> b)
{
	a.insert(1);
	a.insert(3);
	a.insert(5);
	a.insert(7);
	a.insert(9);
	b.insert(2);
	b.insert(…
10,062 views
Gcr27
May 29, 2024 12:44 AM

Hi its possible importing mif files program or software from game Cart fury champioship racing have a experiêncie game this 

2,407 views
pbivens67
March 29, 2024 09:20 PM

Is this code good for AABB collision detection?

#include <iostream>

using namespace std;

class Rect
{
public:
	float x = 5;
	float y = 10;
	float w = 5;
	float h = 10;
};

int main(int argc, char* args[])
{
	Rect rect1;
	Rect rect2;
	if (rect1.x < rect2.x + rect2.w &&
		rect1.x + …
66,615 views
rimcomputing
May 24, 2024 05:50 PM

I've always been passionate about video games, ever since I was a kid. Yesterday I stumbled on some books that discuss game design and it reminded me that I've always wanted to design video games. However, I'm not a very mathematical person, I failed math in middle school and high school, and as an…

2,497 views
timanov
May 03, 2024 07:03 PM

Hello everyone! Sorry for going off-topic. I'm interested in creating games to play as mini apps on Telegram. Could you assist me in understanding how to get started? I'd like to know if it's feasible to create a racing game using JavaScript or TypeScript with a decent graphic interface, or if I sh…

6,576 views
khawk
Advertisement
Advertisement

For Beginners

1 members