/// <summary> /// 頂点のダーティをマークします /// </summary> protected void SetVerticesDirty() { if (TextGraphic != null) { TextGraphic.SetVerticesDirty(); } }
protected sealed override void Awake() { if (TextGraphic != null) { TextGraphic.SetVerticesDirty(); } BeforAwake(); }
private IEnumerator SetVerticesDirtyAsync() { yield return(null); if (TextGraphic != null) { TextGraphic.SetVerticesDirty(); } }