Forums » Themes » [SM5][Theme] SIGMA -The Blue Dasher-

Looking good there Carluz. Would be nice if you can keep the description short to match up with the clean interface.

i.e: Single
4K Mode

...or something like that.
Reply
I have over 20 styles' icons to be made.Most of them will contain a short description(about two lines).It something tiring for sure...

But I've got Disa System~this system will be used as an advanced helper during game.Such as:More Song Infos,Style's descriptions...and so on.Users can call it anytime they need help.
I'm not sure it will be deployed or not(it's a hard thing).But I'll try my best.
Welcome,Thememaniaians./来吧,主题狂们。
Contact me!QQ:1030110910/欢迎与我联系,QQ:1030110910
Reply
Curious on how the final product of this will be

Work in Progress
Reply
Got a big problem:
When selecting music,push the up or down button to select music......
the music wheel is scrolling...but looks very bad:first it stop for a moment,then suddenly scroll to another position(not the problem of wheel function).
1 second later,the animations of graphics will "stop"------but actually scrolling,just cannot see the changes.
Even if I turn the "slow mode" on, it still happens.

I'm just going to use a jacket wheel.... QAQ,Why won't this happen in waiei?(in waiei,there are more images and "currentsongchangedmessagecommand"s than mine....but if I use Slow mode in it, it displays the musicwheel nice).


Beside,The display of title image is complete and works fine.Just like project diva.
Now if you put a title.png in song's folder,it will be displayed and auto sized.
Like this:
Diva ScreenShot
That image of song title-"CAT FOOD"'s image.

Last edited: 5 April 2014 6:47am

Welcome,Thememaniaians./来吧,主题狂们。
Contact me!QQ:1030110910/欢迎与我联系,QQ:1030110910
Reply
Update 2014/4/18

Fixed a lot of problems,and even almost completed the ScreenSelectMusic:
Normal Style(with title image and jacket)
And you can view more info by pressing "Select":
Normal Style(with title image,pane display and jacket)
It looks like this when it has no title image:
Without title image then..
Now I should try ScreenGameplay.
Welcome,Thememaniaians./来吧,主题狂们。
Contact me!QQ:1030110910/欢迎与我联系,QQ:1030110910
Reply
More Info now!
What kind of infomations do you want?Please give me your suggestion and I'll try to offer it in my theme.
New SSM
And the MusicWheel problems haven't been fixed......is there snyone who can help me..?
Welcome,Thememaniaians./来吧,主题狂们。
Contact me!QQ:1030110910/欢迎与我联系,QQ:1030110910
Reply
And the MusicWheel problems haven't been fixed......is there snyone who can help me..?
Do the MusicWheelItems do any kind of tweening? The MusicWheel waits to position them until they have finished tweening.
Reply
And the MusicWheel problems haven't been fixed......is there snyone who can help me..?
Do the MusicWheelItems do any kind of tweening? The MusicWheel waits to position them until they have finished tweening.

These are MusicWheelItem Song NormalPart's lua file contents.I got them from waiei and others.Is there any problems in it?QAQ.

local t = Def.ActorFrame{

LoadActor("Item back")..{
InitCommand=cmd(zoom,0.4);
};
Def.Sprite {
InitCommand = cmd(diffusealpha,1;x,0;y,10;);
SetMessageCommand = function(self, params)
local song = params.Song
local course = params.Course;
self:stoptweening();
if song and not course then
if song:HasBanner() then
self:Load(song:GetBannerPath());
else
self:Load(THEME:GetPathG("","_blank"));
end
self:zoomtowidth(128*1.7);
self:zoomtoheight(40*1.7);
self:fadetop(0.1);
self:fadebottom(0.1);
end
end;
};
Def.Sprite {
InitCommand = cmd(diffusealpha,1;x,-64;y,0;);
SetMessageCommand = function(self, params)
local song = params.Song
local course = params.Course;
self:stoptweening();
if song and not course then
if song:HasJacket() then
self:Load(song:GetJacketPath());
else
self:Load(THEME:GetPathG("","_blank"));
end
self:zoomtowidth(85);
self:zoomtoheight(85);
self:diffusealpha(1);
self:faderight(0.3);
end
end;
};
LoadActor("part")..{
InitCommand=cmd(zoom,0.4);
};
LoadActor("Item bar back")..{
InitCommand=cmd(zoom,0.4);
};
LoadActor("Item bar 2")..{
InitCommand=cmd(zoom,0.4);
};
};

return t;


EDITED a little,but still cannot solve it

Last edited: 23 April 2014 10:04pm

Welcome,Thememaniaians./来吧,主题狂们。
Contact me!QQ:1030110910/欢迎与我联系,QQ:1030110910
Reply