TheZoroForce240 / FNF-Modcharting-Tools

Apache License 2.0
51 stars 23 forks source link

Not an issue but a question #40

Closed Miskept closed 1 year ago

Miskept commented 1 year ago

I haven't used this tool in quite a bit and my dumbass forgot most stuff

How do I use a modifier with an subvalue?

moxie-coder commented 1 year ago

you can use setSubMod or tweenModifierSubValue

Miskept commented 1 year ago

you can use setSubMod or tweenModifierSubValue

Can you give an example, my memory is very fuzzy

moxie-coder commented 1 year ago

tweenModifierSubValue('modifier','subValue',val,time,'ease')

Miskept commented 1 year ago

tweenModifierSubValue('modifier','subValue',val,time,'ease')

Got it working but I would like the modifier to work during a certain part of the song Example: beat 100, how would I do that?

moxie-coder commented 1 year ago

you can use onBeatHit(curBeat) in your lua script

EdwhakKB commented 1 year ago

tweenModifierSubValue('modifier','subValue',val,time,'ease')

Got it working but I would like the modifier to work during a certain part of the song Example: beat 100, how would I do that?

there are 2 ways

the easy one: onBeatHit(curbeat)

or the inCode one ease(beat,time,ease,modifier:subValue)

Miskept commented 1 year ago

tweenModifierSubValue('modifier','subValue',val,time,'ease')

Got it working but I would like the modifier to work during a certain part of the song Example: beat 100, how would I do that?

there are 2 ways

the easy one: onBeatHit(curbeat)

or the inCode one ease(beat,time,ease,modifier:subValue)

Okay that got me to remember now, thank you!