diff --git a/Sources/FocusEntity/FocusEntity+Colored.swift b/Sources/FocusEntity/FocusEntity+Colored.swift index e39f164..9f1bfd5 100644 --- a/Sources/FocusEntity/FocusEntity+Colored.swift +++ b/Sources/FocusEntity/FocusEntity+Colored.swift @@ -35,7 +35,8 @@ public extension FocusEntity { modelMaterial = mat case .texture(let tex): var mat = UnlitMaterial() - mat.color = .init(tint: .white.withAlphaComponent(0.9999), texture: .init(tex)) + mat.baseColor = .texture(tex) + mat.tintColor = .white.withAlphaComponent(0.99) modelMaterial = mat @unknown default: break }