Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rubberduckycooly
GitHub Repository: rubberduckycooly/Sonic-CD-2011-Script-Decompilation
Path: blob/main/Scripts/Title/LiteRibbon.txt
1319 views
1
//----------------Sonic CD Lite Ribbon Script-----------------//
2
//--------Scripted by Christian Whitehead 'The Taxman'--------//
3
//-------Unpacked By Rubberduckycooly's Script Unpacker-------//
4
//---This Object is normally only used by Mobile Data files---//
5
6
sub ObjectDraw
7
// Just draw the Ribbon, nothing special really
8
DrawSprite(0)
9
10
end sub
11
12
13
sub ObjectStartup
14
LoadSpriteSheet("Title/Title.gif")
15
16
// Lite Ribbon Frame
17
SpriteFrame(0, 0, 84, 84, 427, 226)
18
19
end sub
20
21
22
// ========================
23
// Editor Subs
24
// ========================
25
26
sub RSDKDraw
27
DrawSprite(0)
28
end sub
29
30
31
sub RSDKLoad
32
LoadSpriteSheet("Title/Title.gif")
33
SpriteFrame(0, 0, 84, 84, 427, 226) // Lite!
34
35
SetVariableAlias(ALIAS_VAR_PROPVAL, "unused")
36
end sub
37
38