public void OpenPanner(SongItemInformation information) { if (isPannerOpen) { return; } songInformationViewer.SettingInformations(information); songInformationViewer.OpenSongInformation(); }
public void SettingInformations(SongItemInformation information) { this.eyeCatchImage.sprite = information.EyeCatch; this.songName.text = information.SongName; this.composerName.text = information.ComposerName; for (int i = 0; i < information.StepTags.Length; i++) { this.stepTags[information.StepTags[i]].SetActive(true); } for (int i = 0; i < information.Difficultys.Length; i++) { this.difficultyTexts[i].text = information.Difficultys[i].ToString(); } }
public void OpenSongInformationPanner(SongItemInformation information) { freeStyleViewController.OpenPanner(information); }