Results 1 to 10 of 10
  1. #1

    Default [Noteskin] X(horizontal) Offset for each side in Double mode?

    Hey.

    I made a pump noteskin the other day. My problem is that when playing in double mode, the P2 side overlaps the P1 by 2 pixels, just like this:

    Click image for larger version. 

Name:	issue.png 
Views:	48 
Size:	24.1 KB 
ID:	2762
    You can clearly see how the P2 DownLeft arrow overlaps with the P1's DownRight.


    It should like like this:
    Click image for larger version. 

Name:	fix.png 
Views:	45 
Size:	22.0 KB 
ID:	2761

    Is there any line in the noteskin metrics.ini (or lua?) that enables me to control the X(horizontal) offset of the noteskins for each side (P1 & P2) in double mode? (or any other solution that fixes this problem)

    Thanks.

  2. #2
    Super Moderator
    Join Date
    Nov 2006
    Posts
    3,490

    Default

    You cannot fix that without changing SM's source code. The spacing in there looks right to me, so I can't see what the problem would be (though there obviously is one).

  3. #3

    Default

    How come it's not possible to fix this? Isn't there ANY alternative way to sort this out that you can think of?
    Last edited by Chipango; 03-09-2012 at 11:51 PM.

  4. #4
    Super Moderator
    Join Date
    Nov 2006
    Posts
    3,490

    Default

    There still isn't a way to set these values per noteskin. It just hasn't been implemented yet.

  5. #5
    Member MaxX's Avatar
    Join Date
    Aug 2010
    Location
    Somewhere beasting Pendulum
    Posts
    1,797

    Default

    Vertical spacing was done in 3.9 AMX(?), it's just the code is pretty ugly and iirc developers want to clean it up before implementing it.

    In all honesty though from what I'm seeing it's not really that bad of an overlap.
    Yoshi is better than Mario, and you know it's true

    Beta testing at the moment. Good at pad? PM me for details.

  6. #6

    Default

    Code:
    	if Var "Button" == "Down Right" then
    		t.InitCommand=cmd(x,-1);
    	end
    	if Var "Button" == "Down Left" then
    		t.InitCommand=cmd(x,1);
    	end
    wont work for holds tough
    Its not a bug its a FEATURE!

  7. #7
    about 20% cooler shakesoda's Avatar
    Join Date
    Jun 2007
    Location
    Seattle, WA
    Posts
    6,886

    Default

    Quote Originally Posted by Jousway View Post
    Code:
    	if Var "Button" == "Down Right" then
    		t.InitCommand=cmd(x,-1);
    	end
    	if Var "Button" == "Down Left" then
    		t.InitCommand=cmd(x,1);
    	end
    wont work for holds tough
    alternate way to write it
    Code:
    for key, value in pairs({ ["Down Right"]=-1, ["Down Left"]=1 }) do
        if Var "Button" == key then
            t.InitCommand=cmd(x,value)
        end
    end
    < shakesoda> I have altered the subject
    < shakesoda> pray I do not alter it further

  8. #8

    Default

    but I like my way because its not that confusing for new people :V
    Its not a bug its a FEATURE!

  9. #9

    Default

    Quote Originally Posted by Jousway View Post
    Code:
    	if Var "Button" == "Down Right" then
    		t.InitCommand=cmd(x,-1);
    	end
    	if Var "Button" == "Down Left" then
    		t.InitCommand=cmd(x,1);
    	end
    wont work for holds tough
    Hey thanks! Where should I put that?

  10. #10

    Default

    in the noteskin.lua
    Its not a bug its a FEATURE!

Similar Threads

  1. How can I play in versus/couple/double mode?
    By lollipop in forum General questions
    Replies: 1
    Last Post: 07-08-2009, 03:22 AM
  2. SM4 Crash in DOUBLE Mode
    By mg in forum Crash questions
    Replies: 0
    Last Post: 08-23-2008, 11:55 AM
  3. SM4: DOUBLE Mode Not Showing Song Tech Info
    By mg in forum General questions
    Replies: 1
    Last Post: 08-23-2008, 12:08 AM
  4. Double mode
    By CX gamer in forum General questions
    Replies: 1
    Last Post: 05-02-2007, 05:55 AM
  5. Vertical+Horizontal arrows play?
    By matt666 in forum General StepMania
    Replies: 1
    Last Post: 12-23-2006, 04:43 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

Thanks to

SourceForge.net Logo