Warning: Trying to access array offset on value of type null in phar://.../vb/vb.phar/bbcode/url.php on line 2 Warning: Trying to access array offset on value of type null in phar://.../vb/vb.phar/bbcode/url.php on line 2 Does anyone know how to decrease the explosion animation for noteskins in stepmania5? - Flash Flash Revolution

Does anyone know how to decrease the explosion animation for noteskins in stepmania5?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Wafles
    FFR Player
    • Feb 2013
    • 1988

    #1

    Does anyone know how to decrease the explosion animation for noteskins in stepmania5?

    Trying to finish my custom noteskin up and this is the only thing I really really want to fix. I used delta as my basis if that makes any difference.

    To clarify, I mean the time for the note tap explosion. Don't really care about mines.
    Last edited by Wafles; 08-14-2013, 12:28 AM.

    http://smleaderboards.net/profile/view/Wafles
  • Pseudo Enigma
    ごめんなさい (/ω\)
    • Aug 2012
    • 2290

    #2
    Re: Does anyone know how to decrease the explosion animation for noteskins in stepman

    don't you just have to decrease the number of frames in the image or something?

    eg. NoteExplosion 7x1.png -> NoteExplosion 6x1.png?
    Pretty sure that's what you mean anyway. Haven't done anything in SM for a while so I forget how it works..

    Comment

    • Wayward Vagabond
      Confirmed Heartbreaker
      FFR Simfile Author
      • Jul 2012
      • 5866

      #3
      Re: Does anyone know how to decrease the explosion animation for noteskins in stepman

      I'm almost positive that's not it. It has to do with the metrics/lua

      Comment

      • .Rarity
        FFR Player
        • Sep 2011
        • 509

        #4
        Re: Does anyone know how to decrease the explosion animation for noteskins in stepman

        I know what part of the metrics you need to edit, however I still have no real coding knowledge yet. I'll just show one part you can change to edit the animations of the tap explosions:


        Dim refers to the explosions before certain events triggers the "Bright" command, in most cases it's either after 100 combos or if enabled, anytime you hit a MARVELOUS. I'm not good at explaining things.

        Comment

        • Jousway
          FFR Player
          • Jun 2009
          • 865

          #5
          Re: Does anyone know how to decrease the explosion animation for noteskins in stepman

          hi I'm the noteskin guy that does know shit

          what you are basicly looking for is the

          [GhostArrowDim]

          and

          [GhostArrowBright]

          ghostarrowbright shows up after a 100 combo

          also Wayward Vagabond is right with the /lua because you can define it with lua but 99.99% of us people that do noteskins usally do it in the metrics.ini, so open that,

          under [GhostArrowDim] and [GhostArrowBright] you will see

          W5Command=
          W4Command=
          W3Command=
          W2Command=
          W1Command=

          these are the commands you are looking for, w5 being marvelous and w1 being bad, the rest is in between, as for making the explosion slower I'ma show you a example one from the 3.9 default port that I made.

          W5Command=diffuse,0.8,0.0,0.6,1;zoom,1;linear,0.06;zoom,1.1;linear,0.06;diffusealpha,0

          the diffuse is the colouring, and the zoom is the size of the skin, what we want to focus on is the linear part, linear basicly defines the time it takes to change from 1 set of commands before the linear to the other set of commands behind the linear, you can read more at


          there are multible tween types like
          accelerate · bouncebegin · bounceend · compound · decelerate · hibernate · linear · sleep · smooth · spring

          but we are just going to focus on linear now

          so seeing that we know know what to edit we change some bits like we want the command to be faster, the way linear works is with seconds
          linear,seconds

          so we want to change both the values of linear,0.06 to linear,0.03

          which means it shows for half the time, thats all

          if you need any noteskin help feel free to ask
          Last edited by Jousway; 08-14-2013, 06:49 AM.
          Its not a bug its a FEATURE!



          Comment

          • Wafles
            FFR Player
            • Feb 2013
            • 1988

            #6
            Re: Does anyone know how to decrease the explosion animation for noteskins in stepman

            Oh my god thank you so much for the help everyone, I got it!

            Also I'm gonna love that SM themeing wiki. Noteskin almost done, next step custom theme!
            Last edited by Wafles; 08-14-2013, 07:34 AM.

            http://smleaderboards.net/profile/view/Wafles

            Comment

            • Jousway
              FFR Player
              • Jun 2009
              • 865

              #7
              Re: Does anyone know how to decrease the explosion animation for noteskins in stepman

              Originally posted by Wafles
              Oh my god thank you so much for the help everyone, I got it!

              Also I'm gonna love that SM themeing wiki. Noteskin almost done, next step custom theme!
              I also do theming
              Silly Noteskin and Theme Testing Stuff. Contribute to Jousway/Stepmania-Zpawn development by creating an account on GitHub.


              so if you need help, ask me

              also I make open source theme systems for everyone to use in their own theme

              like there are some systems of mine you might be interested in using, like for example my speed mod system

              Silly Noteskin and Theme Testing Stuff. Contribute to Jousway/Stepmania-Zpawn development by creating an account on GitHub.



              which adds amod

              Code:
              Average Mod Notes:
              Amod works like this, it takes the bpm's the song has and checks the one that exists the longest.
              Then it does Defined Amod/Avarage BPM, so basicly, if the song has a bpm of 170.
              And you defined the Amod as A750 it does 750/170 which is rounded off to 4.41.
              And then it just defines an Xmod with 4.41 as 4.41x.
              Last edited by Jousway; 08-14-2013, 08:02 AM.
              Its not a bug its a FEATURE!



              Comment

              • Wafles
                FFR Player
                • Feb 2013
                • 1988

                #8
                Re: Does anyone know how to decrease the explosion animation for noteskins in stepman

                Holy crap I didn't even know such a thing was possible. I'll give that a check later today, might convince me to give some xmod files a chance.

                If I have any questions I'll definitely toss them your way, appreciate it man.

                http://smleaderboards.net/profile/view/Wafles

                Comment

                Working...