コード例 #1
0
 public void Set_Tooltip(ITEM pkItem)
 {
     this.m_cItem = pkItem;
     this.Item_Tooltip(this, this.m_cItem, null, G_ID.NONE, false);
     this.Show();
     ItemTooltipDlg_Second.Tooltip_Rect(this, Vector3.zero);
 }
コード例 #2
0
 public void Set_Tooltip(G_ID a_eWidowID, ITEM a_cItem, bool bEquiped = false)
 {
     this.m_eParentWindowID = a_eWidowID;
     this.m_cItem           = a_cItem;
     this.Item_Tooltip(this, this.m_cItem, null, this.m_eParentWindowID, bEquiped);
     this.Show();
     ItemTooltipDlg_Second.Tooltip_Rect(this, Vector3.zero);
 }
コード例 #3
0
 public void Set_Tooltip(G_ID eWidowID, ITEM pkItem, ITEM pkEquipedItem)
 {
     this.m_eParentWindowID = eWidowID;
     this.m_cItem           = pkItem;
     this.Item_Tooltip(this, this.m_cItem, pkEquipedItem, eWidowID, false);
     this.Show();
     ItemTooltipDlg_Second.Tooltip_Rect(this, Vector3.zero);
 }
コード例 #4
0
 public void Set_Tooltip(G_ID eWidowID, int itemunique)
 {
     this.m_eParentWindowID = eWidowID;
     this.m_cItem.Init();
     this.m_cItem.m_nItemUnique = itemunique;
     this.Item_Tooltip(this, this.m_cItem, null, eWidowID, false);
     this.Show();
     ItemTooltipDlg_Second.Tooltip_Rect(this, Vector3.zero);
 }
コード例 #5
0
 public void Set_Tooltip(G_ID a_eWidowID, ITEM a_cItem, bool bEquiped, Vector3 showPosition, long SolID = 0L)
 {
     this.m_eParentWindowID = a_eWidowID;
     this.m_cItem           = a_cItem;
     this.m_SolID           = SolID;
     this.Item_Tooltip(this, this.m_cItem, null, this.m_eParentWindowID, bEquiped);
     this.Show();
     ItemTooltipDlg_Second.Tooltip_Rect(this, showPosition);
 }