public void FBOnShow(FBToolType type, string des, string spriteName = null, Texture2D tex = null) { f_type_enum = type; f_cachedes_str = des; f_cachedspname_str = spriteName; f_cached_tex2D = tex; f_current_pivot = FBGetPivot(); Vector3 localPos = FBGetItemLocalPos(); switch (f_current_pivot) { case FBPivot.LeftTop: f_current_tip = f_tips[0]; break; case FBPivot.RightTop: f_current_tip = f_tips[1]; break; case FBPivot.LeftBottom: f_current_tip = f_tips[2]; break; case FBPivot.RightBottom: f_current_tip = f_tips[3]; break; } f_current_tip.FBOnShow(type, localPos, des, spriteName, tex); f_isshow_b = true; }
public void FBOnHide() { f_current_tip.FBOnHide(); f_current_tip = null; f_isshow_b = false; }