Hello, new Godot user here,
I have been trying to change the texture of a MeshInstance3D Node using script. When I add the texture using the inspector (by adding it to the albedo section of Surface Material Override) it shows up correctly, but I cannot get the texture to show up using a script instead.
I am using the MeshInstance3D as a background and a want to be able to change the background texture from an in-game menu (which is why I am trying to use a script and not the inspector).
Here is what I have so far:
extends MeshInstance3D
var material1 = preload("res://CC0 - Textures (Main Texture)/texture1_diff_4k.jpg")
var material2 = preload("res://CC0 - Textures (Main Texture)/texture2_diff_4k.jpg")
func _ready():
self.set_surface_override_material(0, material1)
So far all it does is change the background to a slightly darker shade of white.
Thank you for your help.