瀏覽代碼

Fx2D text use textColor

Tom Spira 2 年之前
父節點
當前提交
7d666c132a
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      hrt/prefab/l2d/Text.hx

+ 1 - 2
hrt/prefab/l2d/Text.hx

@@ -45,8 +45,7 @@ class Text extends Object2D {
 		super.updateInstance(ctx, propName);
 		var h2dText = (cast ctx.local2d : h2d.HtmlText);
 		h2dText.visible = visible;
-		h2dText.color = h3d.Vector.fromColor(color);
-		h2dText.color.w = 1;
+		h2dText.textColor = color;
 		h2dText.maxWidth = maxWidth > 0 ? maxWidth : null;
 
 		if (enableTextShadow) {