コード例 #1
0
 private void ShowTooltipInLobby(LobbyInteractableUserButtonNode userButton, SelfUserNode selfUser, LobbyNode lobby)
 {
     if (!userButton.lobbyUserListItem.Empty)
     {
         long id = userButton.lobbyUserListItem.userEntity.Id;
         this.RequestTooltipDisplay(id, userButton.userInteractionsButton.tooltipPrefab, selfUser.Entity, InteractionSource.LOBBY, lobby.Entity.Id);
     }
 }
コード例 #2
0
 public void ShowTooltipInLobbyRightClick(RightMouseButtonClickEvent e, LobbyInteractableUserButtonNode userButton, [JoinAll] SelfUserNode selfUser, [JoinByBattleLobby] LobbyNode lobby)
 {
     this.ShowTooltipInLobby(userButton, selfUser, lobby);
 }