From b24aac13d7bd8106950cd9f5c04523d1147ef493 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 28 May 2007 10:41:08 +0000 Subject: [PATCH] Add a way for NoteSkins to fall back on the default theme but handle explosion rotation on their own. --- stepmania/NoteSkins/common/common/NoteSkin.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stepmania/NoteSkins/common/common/NoteSkin.lua b/stepmania/NoteSkins/common/common/NoteSkin.lua index ea2daead06..5ff54a1b35 100644 --- a/stepmania/NoteSkins/common/common/NoteSkin.lua +++ b/stepmania/NoteSkins/common/common/NoteSkin.lua @@ -57,4 +57,7 @@ end -- This is the only required function. ret.Load = func; +-- Use this to override the game types' default Load() functions. +ret.CommonLoad = func; + return ret;