Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-CD-2011-Script-Decompilation
Path: blob/main/Scripts/R5/BossBackPanel.txt
1319 views
1
//--------------Sonic CD Boss Back Panel Script---------------//
2
//--------Scripted by Christian Whitehead 'The Taxman'--------//
3
//-------Unpacked By Rubberduckycooly's Script Unpacker-------//
4
5
6
sub ObjectDraw
7
8
// Just draw the Sprites, no animation or anything complex needed here
9
10
DrawSprite(0)
11
DrawSprite(1)
12
13
end sub
14
15
16
sub ObjectStartup
17
LoadSpriteSheet("R5/Objects2.gif")
18
19
// Panel Frames
20
SpriteFrame(-16, -32, 32, 16, 174, 238)
21
SpriteFrame(-16, -16, 32, 16, 174, 238)
22
23
end sub
24
25
26
// ========================
27
// Editor Subs
28
// ========================
29
30
sub RSDKDraw
31
DrawSprite(0)
32
DrawSprite(1)
33
end sub
34
35
36
sub RSDKLoad
37
LoadSpriteSheet("R5/Objects2.gif")
38
SpriteFrame(-16, -32, 32, 16, 174, 238)
39
SpriteFrame(-16, -16, 32, 16, 174, 238)
40
41
SetVariableAlias(ALIAS_VAR_PROPVAL, "unused")
42
end sub
43
44