SFML Tutorial - Install
In this tutorial I will show you how to integrate the popular SFML library in your Visual Studio projects. Some knowledge of C++ is assumed. *SFML Website* https://www.sfml-dev.org/index.php *Discord Server* https://discord.gg/NtPwH5BCfb *Patreon* https://www.patreon.com/victorgordan *Code* #include "SFML/Graphics.hpp" int main() { sf::RenderWindow window(sf::VideoMode(800, 800), "Window Title"); sf::CircleShape shape(200.f, 100); shape.setFillColor(sf::Color(204, 77, 5)); // Color circle shape.setPosition(200, 200); // Center circle while (window.isOpen()) { sf::Event event; while (window.pollEvent(event)) { if (event.type == sf::Event::Closed) window.close(); } window.clear(sf::Color(18, 33, 43)); // Color background window.draw(shape); window.display(); } return 0; } *Timestamps* 0:00 Intro & Download 0:35 VS Project 0:51 Extracting the files 1:10 Configuring the VS Project 2:10 Checking the Installation 2:37 Learning Resource & Outro *References* https://www.sfml-dev.org/tutorials/2.5/start-vc.php #cpp #visualstudio #sfml #tutorial
Download
0 formatsNo download links available.