Skip to main content

GoDot 4.x - How to run GoDot with Intel Graphics (also Radeon disable)


Create a run.bat with the next code, change "Godot_v4.3-dev6_win64.exe" for your file, run it, when you have visible the editor go to Debug -> customize run instances and set the next parameter "--display-driver windows --rendering-driver opengl3" in order to launch your developed project.

@echo off
setlocal
	REM Uncomment this line for disable AMD graphics card on laptops with AMD graphics integrated
	REM set DISABLE_LAYER_AMD_SWITCHABLE_GRAPHICS_1=1
	
	REM For servers with --script
	REM Godot_v4.3-dev6_win64.exe --headless
	
	REM For windows 
	Godot_v4.3-dev6_win64.exe --display-driver windows --rendering-driver opengl3
	pause > nul
endlocal

REM Debug -> customize run instances
REM Depurar -> customize run instances
REM usar los siguientes parametros --display-driver windows --rendering-driver opengl3