top of page
Website Created by fabr with logo by Logined Guest and inspired by Requiem and Psych News. Support Friday Night Funkin' on Newgrounds and Itch.io All characters and original Friday Night Funkin' game material belong to The Funkin Crew
bottom of page
An fascinating discussion is value comment. I think that it is best to write extra on this matter, it won’t be a taboo topic however generally people are not enough to talk on such topics. To the next. Cheers slot demo gacor
Just admiring your work and wondering how you managed this blog so well. It’s so remarkable that I can't afford to not go through this valuable information whenever I surf the internet! UFA888
Incredible! Just what an eye fixed opener this kind of submit continues to be for me personally. Quite definitely treasured, book marked, My partner and i can’t watch for a lot more! https://ro-bust.co.za/
Whoa! Precisely what a close look opener this specific article have been to me. A lot loved, added, My spouse and i can’t loose time waiting for additional! https://track-it-all.co.za/
Thanks for your time designed for advertisment a great very good guide! I noticed your internet-site ideal for a must have. It has splendid and even effective content articles. Compete the best get the job done! https://isilumko.co.za/
I am jovial you take pride in what you write. It makes you stand way out from many other writers that can not push high-quality content like you. blue mosque istanbul opening hours
Excellent post. I was always checking this blog, and I’m impressed! Extremely useful info specially the last part, I care for such information a lot. I was exploring this particular info for a long time. Thanks to this blog my exploration has ended. fototapety
The following is the perfect posting I actually found as a consequence of promote them. It's really just what exactly Needed to check out anticipation around long run you are going to continue on to get spreading this sort of great posting. biurko
Here is the relevant (Haxe) code from Funkin' is Magic
setSpr('pony1', addAnimPrefix( 4000, 235, "poners/lyra", 'pony', 1)); getSpr('pony1').scale.set(1.2,1.2); setSpr('pony2', addAnimPrefix( -6000, 245, "poners/bonbon", 'bonbon', 1.1)); getSpr('pony2').scale.set(1.4,1.4); getSpr('pony2').flipX = true; setSpr('pony3',addAnimPrefix( -8000, 255, "poners/minuette",'pony', 1.2)); getSpr('pony3').scale.set(1.6,1.6); getSpr('pony3').flipX = true; setSpr('pony4',addAnimPrefix( 14000, 245, "poners/vinyl",'pony', 1.2)); getSpr('pony4').scale.set(1.4,1.4); setSpr('pony5',addAnimPrefix( -10000, 235, "poners/octavia",'pony', 1.2)); getSpr('pony5').scale.set(1.2,1.2); getSpr('pony5').flipX = true; getSpr('pony1').velocity.x = -300; getSpr('pony2').velocity.x = 300; getSpr('pony3').velocity.x = 300; getSpr('pony4').velocity.x = -300; getSpr('pony5').velocity.x = 300;
Of particular note:
"getSpr" and "setSpr" are convenience functions that reference the characters from a map. This avoids creating a lot of individual variables.
Movement is done by setting the sprite's "velocity" value (here it's set for the X value). A sprite that has velocity set (make sure sprite.active = true) will move that many pixels per second.
The sprites are placed FAR OFFSCREEN, which delays their appearance on screen. For example, Octavia is placed 14,000 pixels off-screen and moves to the left (right is positive and left is negative) at a rate of 300 pixels per second. This means they will only enter the screen after about 45 seconds or so.
Hope this makes it clear how the background characters work here! Fun fact, the tank in the background of Week 7 works in a similar way.
not going to make a LUA, but I'll tell you that there is a tween thing in Psych Engine
doTweenX(tag:String, vars:String, value:Dynamic, duration:Float, ease:String)
EXAMPLE: doTweenX('imageX', 'image', 1000, 0.15, 'circleInOut');
it makes the X coordinate go to 0 to 1000 in 0.15 seconds
Could you be more specific?