Skip to content

Commit 7119a04

Browse files
authored
Merge pull request #20 from poco0317/master
Prepare for v2.2.0 release - Compatibility with Etterna 0.65.1
2 parents afccc38 + 7b4a07e commit 7119a04

File tree

181 files changed

+20483
-4506
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+20483
-4506
lines changed

BGAnimations/Screen in.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ local t = Def.ActorFrame{}
22

33
t[#t+1] = Def.Quad{
44
InitCommand=function(self)
5-
self:FullScreen():diffuse(getMainColor("background")):diffusealpha(1)
6-
end;
5+
self:FullScreen():diffuse(getMainColor("transition")):diffusealpha(0):smooth(0.1):diffusealpha(1)
6+
end,
77
OnCommand=function(self)
8-
self:smooth(0.2):diffusealpha(0)
9-
end;
8+
self:smooth(0.1):diffusealpha(0)
9+
end
1010
}
1111

1212
return t

BGAnimations/Screen out.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ local t = Def.ActorFrame{}
33
t[#t+1] = Def.Quad{
44
InitCommand=function(self)
55
self:FullScreen():diffuse(getMainColor("background")):diffusealpha(0)
6-
end;
6+
end,
77
OnCommand=function(self)
88
self:smooth(0.2):diffusealpha(1)
9-
end;
9+
end
1010
}
1111

1212
return t
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
local t = Def.ActorFrame{}
2+
3+
return t
File renamed without changes.

0 commit comments

Comments
 (0)