The Tricky Flags No One Explained! Raylib Window Setup

Pubblicato il: 10 maggio 2026
sul canale di: CubeKio
96
6

Hello guys in this video I will be showing you guys how to configure your window using C++ with Raylib and Visual Studio (2022)

Sections:
00:00 -- Resizeable Window
00:21 -- Transparent Window
01:31 -- Vsync on Window
02:25 -- Full Screen Mode on Window
03:59 -- WIndow on the Top (Always)
04:22 -- Window always runs (even when minimized)

I aimed this video to be as simple as possible and it contains the tricky window configuration flags.
The other flags are pretty simple that is why I didn't have the need to go over them!

I encourage you to learn more C++ if you don't already know; so that you can keep up with the videos that come after this ( Ill try to explain C++ and Raylib but won't be getting in to too much details)

WARINING:
-- While making these videos I am learning how Raylib works and trying to improve my C++ skills so if you know a better way to do things go ahead!

GOAL OF THESE VIDEOS:
-- To learn the Raylib library and C++ and reinforce my learning by teaching others!

-----------------------------------------------------------------------------------------------------------------------

Cmake gets the folder name --- Now you don't even need to get your folder name :D

cmake_minimum_required(VERSION 3.24)

get_filename_component(PROJECT_NAME_FROM_FOLDER ${CMAKE_CURRENT_SOURCE_DIR} NAME)

string(REPLACE " " "_" PROJECT_NAME_SAFE ${PROJECT_NAME_FROM_FOLDER})

project(${PROJECT_NAME_SAFE} LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

include(FetchContent)

FetchContent_Declare(
raylib
GIT_REPOSITORY https://github.com/raysan5/raylib.git
GIT_TAG 6.0
GIT_SHALLOW ON
)

FetchContent_MakeAvailable(raylib)

add_executable(${PROJECT_NAME}
main.cpp
)

target_link_libraries(${PROJECT_NAME} PRIVATE raylib)

-----------------------------------------------------------------------------------------------------------------------

#learnwithfun #learning
#cpp #programming #coding #visualstudio2022
#fun #funny #cool
#developer #aseprite #raylib #configuration #flag
#tutorial
#trending #trend #trendingvideo


In questa pagina del sito puoi guardare il video online The Tricky Flags No One Explained! Raylib Window Setup della durata di ore minuti seconda in buona qualità , che l'utente ha caricato CubeKio 10 maggio 2026, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 96 volte e gli è piaciuto 6 spettatori. Buona visione!