Einheit Farbe Alpha funktioniert nicht
// FIRST STEP:
// Change Material Rendering Mode from Opaque to Transparent
// Using Code to change alpha value
[SerializeField] private Material myMaterial;
void Start()
{
Color color = myMaterial.color;
color.a = 0;
}
The Real One