gdquest-demos / godot-4-3d-third-person-controller

Godot 4 demo with a plug-and-play 3D Third-Person Shooter (TPS) character controller inspired by games like Ratchet and Clank.
MIT License
710 stars 78 forks source link

Working for mac #38

Open graphific opened 5 months ago

graphific commented 5 months ago

FYI there's no export for mac. The gdquest website also only exports a game.ini in a zip. The problem is that godot4 has some issues [one of them] for some more complex shader parameters using Vulkan.

One easy way to get this (excellent controller btw, so thanks for that) to work for Mac (m1 in my case) godot users is to edit the project.godot file not to open the main scene directly (which would make the editor hang): run/main_scene="res://Main.tscn" to run/main_scene="" And then in the editor itself changing to the compability rendering method or in the godot file:

[rendering]

renderer/rendering_method="gl_compatibility"
renderer/rendering_method.mobile="gl_compatibility"

This works on my godot 4.2.2 as well as godot 4.3 beta 1