forked from xyonico/CustomAvatarsPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request xyonico#25 from DeadlyKitten/master
Updated Plugin to Beat Saber v0.13.0
- Loading branch information
Showing
9 changed files
with
147 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using UnityEngine; | ||
|
||
namespace CustomAvatar | ||
{ | ||
class AvatarCellInfo : IPreviewBeatmapLevel | ||
{ | ||
#region Aliases | ||
|
||
public string name { get; set; } | ||
public string subName { get; set; } | ||
public string authorName { get; set; } | ||
|
||
#endregion | ||
|
||
#region Properties | ||
|
||
public string levelID => null; | ||
public string songName => name; | ||
public string songSubName => subName; | ||
public string songAuthorName => authorName; | ||
public string levelAuthorName => null; | ||
public float beatsPerMinute => 0f; | ||
public float songTimeOffset => 0f; | ||
public float shuffle => 0f; | ||
public float shufflePeriod => 0f; | ||
public AudioClip previewAudioClip => null; | ||
public float previewStartTime => 0f; | ||
public float previewDuration => 0f; | ||
public float songDuration => 0f; | ||
public Sprite coverImage { get; set; } | ||
public SceneInfo environmentSceneInfo => null; | ||
public BeatmapCharacteristicSO[] beatmapCharacteristics => new BeatmapCharacteristicSO[0]; | ||
|
||
#endregion | ||
} | ||
} |
Oops, something went wrong.