Add CrushedIceCocktail by K-Pone for Miami Ice

install-platforms
Lukas Werling 2018-01-07 22:21:44 +01:00 committed by Nicolas Hake
parent 9cbf1947ad
commit e200aa58b3
4 changed files with 23 additions and 2 deletions

View File

@ -110,6 +110,7 @@ func InitializeRound()
SetSky(g_theme.Sky);
g_theme->InitializeRound();
g_theme->InitializeMusic();
return true;
}
@ -473,6 +474,21 @@ static const HotIce = new Global {
AltMatRatio = 50,
BackgroundMat = nil,
Sky = "Default",
PlayList = nil,
InitializeMusic = func()
{
// No special play list => music by Ambience
if (this.PlayList == nil)
InitializeAmbience();
else
{
// Remove Ambience to avoid interference.
RemoveAll(Find_ID(Ambience));
SetPlayList(this.PlayList, NO_OWNER, true);
SetGlobalSoundModifier(nil);
}
},
};
static const EciToh = new HotIce {
@ -484,6 +500,11 @@ static const EciToh = new HotIce {
static const MiamiIce = new HotIce {
MatNames = ["^BlackIce-black", "^BlackIce-black"],
Sky = "SkyMiami",
PlayList =
{
PlayList = "beach",
MusicBreakChance = 0,
},
InitializeRound = func()
{

Binary file not shown.

View File

@ -1 +1 @@
6.0
8.0

View File

@ -4,4 +4,4 @@ CC Attribution 3.0 license (http://creativecommons.org/licenses/by/3.0/)
Author Work(s)
===============================================================================
K-Pone IslandDreams, Motorway, TheSkylands, UrbanBolero, LucidDream, Offshore
K-Pone IslandDreams, Motorway, TheSkylands, UrbanBolero, LucidDream, Offshore, CrushedIceCocktail