SFML Quick Setup - Everything You Need To Get Started Making a Game In C++ - Episode 1

preview_player
Показать описание
Want to start making videos games with C++, but don't know where to start?

In this video, I go step-by-step from nothing to drawing something on the screen using SFML. Once you can start drawing things on screen, you're ready start programming your game.

Written Instructions:

3 - Create new empty C++ console application project.

4 - Open project properties setting.

5 - In All Configurations, Under Properties-Configuration Properties-C/C++-General : Add Additional Include Directory YourPathHere\SFML-2.6.1\include

6 - In All Configurations, Under Properties-Configuration Properties-Linker-General : Add Additional Library Directory YourPathHere\SFML-2.6.1\lib

int main()
{
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
sf::CircleShape shape(100.f);

{
sf::Event event;
{
}

}

return 0;
}
Рекомендации по теме
Комментарии
Автор

THANK YOU SOOO MUCH
IT TOOK ME 4 HOURS TO RUN THE SFML LIBRARY UTILL I FOUND YOUR VIDEO, I WAS ABLE TO REPLICATE SFML FOR 32 (only difference being that there is no x64 file created and you can directly add the required files in the debug and release folder) BIT AND IT WORKS GREAT!

PlayGame-irbr
Автор

Thank you! Very helpful, got setup relatively easily with these directions.

DeathChronx
Автор

Hello, when I right click on solution and go to properties, I don't have a left menu like you do. All I have is Common properties and configuration properties. Why is that?

AhmedDesignerShowerOfNaples
Автор

please make tutorial about collision and how the player movement stop after collision from 4 diffirent side

hridoy
Автор

this setup for uncoming projects or only applied for one project

sriman
Автор

release file is not showing under the x64 file for me

IAN-nowf
Автор

Do the SMFL files have to be on the C: drive?

DevinAvery-ntyb
Автор

When I open the solution properties pages, there is no c++ selection and I can’t change the configuration… what am I doing wrong

ryanmichelson
Автор

Seems C++ library management is worse than Java

terrormapu
Автор

hello dear i have aproject in university about to make agame by sfml can u help me

omarabdelnabi