Adds a 3D prototype material called PrototypeMaterial3D
that uses a simple checkerboard texture.
Compatible: Godot
>= v4.0
- Copy the contents of this folder into
res://addons/gdquest_prototype_material/
. - Enable the addon from
Project > Project Settings... > Plugins
. - Profit.
- Install gd-plug using the Godot Asset Library.
- Save the following code into the file
res://plug.gd
(create the file if necessary):
#!/usr/bin/env -S godot --headless --script
extends "res://addons/gd-plug/plug.gd"
func _plugging() -> void:
plug(
"[email protected]:GDQuest/godot-addons.git",
{include = ["addons/gdquest_prototype_material"]}
)
- On Linux, make the
res://plug.gd
script executable withchmod +x plug.gd
. - Using the command line, run
./plug.gd install
orgodot --headless --script plug.gd install
.