Share and discuss custom SMBX graphics.
Moderator: Userbase Moderators
|
|
|
|
-
Murphmario
- 2025 Egg Hunter

- Posts: 2389
- Joined: Fri Dec 20, 2013 7:07 pm
- Pronouns: he/him
Postby Murphmario » Thu Apr 10, 2014 6:08 pm
Nice. Maybe you can use layers and events to make the block between 2 magnets move back and forth. Yeah, downloading!
|
|
|
|
|
|
|
|
|
-
Dragonmaster146
- Spike

- Posts: 265
- Joined: Mon Dec 30, 2013 2:49 pm
Postby Dragonmaster146 » Thu Apr 10, 2014 6:26 pm
Can you make a blue one? Cause you know, positive and negative.
|
|
|
|
|
|
|
|
|
-
Giantfirering27
- Hoopster

- Posts: 42
- Joined: Sat Feb 08, 2014 3:02 pm
-
Contact:
Postby Giantfirering27 » Thu Apr 10, 2014 10:26 pm
Dragonmaster146 wrote:Can you make a blue one? Cause you know, positive and negative.
Here.
It is a medium type blue.
|
|
|
|
|
|
|
|
|
-
XuticX
- Hoopster

- Posts: 42
- Joined: Wed Feb 12, 2014 11:03 pm
Postby XuticX » Thu Apr 10, 2014 11:58 pm
awesome texture. can't get much better looking than that. and defiantly these would be a very cool level design feature with layers and events to tag along. great job!
|
|
|
|
|
|
|
|
|
-
bossedit8
- Banned
- Posts: 6838
- Joined: Fri Dec 20, 2013 12:35 pm
-
Contact:
Postby bossedit8 » Fri Apr 11, 2014 7:35 am
Tilesets are getting newer at the future. I really like those graphics you made right there. It is unique for a Mario Game. I see no flaws for that so you did made a good work on it.
|
|
|
|
|
|
|
|
|
-
Cacazk
- Tweeter

- Posts: 147
- Joined: Sun Mar 09, 2014 10:27 pm
Postby Cacazk » Fri Apr 11, 2014 1:04 pm
Dragonmaster146 wrote:Can you make a blue one? Cause you know, positive and negative.
Just paint it blue ué? You can do this too  .
bossedit8 wrote:Tilesets are getting newer at the future. I really like those graphics you made right there. It is unique for a Mario Game. I see no flaws for that so you did made a good work on it.
Really gave work. Thank you  !
|
|
|
|
|
|
|
|
|
-
silent_
- Birdo

- Posts: 2151
- Joined: Fri Dec 20, 2013 3:34 pm
Postby silent_ » Fri Apr 11, 2014 2:25 pm
What does it replace? These magnets are frankly some of the best graphics I've ever seen. Too bad there isn't any gravitational feature for SMBX. That would make these beyond excellent.
|
|
|
|
|
|
|
|
|
-
Murphmario
- 2025 Egg Hunter

- Posts: 2389
- Joined: Fri Dec 20, 2013 7:07 pm
- Pronouns: he/him
Postby Murphmario » Fri Apr 11, 2014 3:12 pm
Kep wrote:What does it replace? These magnets are frankly some of the best graphics I've ever seen. Too bad there isn't any gravitational feature for SMBX. That would make these beyond excellent.
Use layers and events to move the block.
|
|
|
|
|
|
|
|
|
-
Cacazk
- Tweeter

- Posts: 147
- Joined: Sun Mar 09, 2014 10:27 pm
Postby Cacazk » Fri Apr 11, 2014 3:38 pm
Use layers and events to move the block.
This is quite difficult. Because the block has to stop in time to reach the magnet.
|
|
|
|
|
|
|
|
|
-
Murphmario
- 2025 Egg Hunter

- Posts: 2389
- Joined: Fri Dec 20, 2013 7:07 pm
- Pronouns: he/him
Postby Murphmario » Fri Apr 11, 2014 3:44 pm
caiozk wrote:Use layers and events to move the block.
This is quite difficult. Because the block has to stop in time to reach the magnet.
Actually, it's not so hard. You just need to think.
|
|
|
|
|
|
|
|
|
-
Emral
- Cute Yoshi Egg

- Posts: 9865
- Joined: Mon Jan 20, 2014 12:58 pm
- Flair: Phoenix
Postby Emral » Fri Apr 11, 2014 6:49 pm
(Block's speed) = (pixels it should move)/(time)/65
If i remember correctly... Then this should be the formula for making pixel perfect block movements. Keep in mind that the distance is measured in pixels, which means that for 1 block you need to move it 32 pixels.
I might've messed up in punctuation though.
|
|
|
|
|
|
|
|
|
-
RudeGuy
- Bowser

- Posts: 4994
- Joined: Fri Dec 27, 2013 7:36 am
- Flair: local guy
Postby RudeGuy » Sat Apr 12, 2014 8:00 am
Emral wrote:(Block's speed) = (pixels it should move)/(time)/65
If i remember correctly... Then this should be the formula for making pixel perfect block movements. Keep in mind that the distance is measured in pixels, which means that for 1 block you need to move it 32 pixels.
I might've messed up in punctuation though.
The correct formula to make layers move in a X blocks in this:
32 * x / y / 65. DarkMatt posted a guide for this a long time ago that I made sure to memorize, because it works. I should know, I've been using this for a very long time now. You'll probably get a ridiculous decimal, but I usually just use the first four digits after the decimal point. However, with faster speeds/longer distances, you may still need to play around with the result a bit.
32 = Number of pixels in a given tile, of course.
x = How many tile spaces should this layer move?
y = How many seconds should this take?
65 = Maximum framerate.
Last edited by RudeGuy on Sat Apr 12, 2014 8:02 am, edited 2 times in total.
|
|
|
|
|
|
|
|
|
-
Emral
- Cute Yoshi Egg

- Posts: 9865
- Joined: Mon Jan 20, 2014 12:58 pm
- Flair: Phoenix
Postby Emral » Sat Apr 12, 2014 8:01 am
Christian07 wrote:Emral wrote:(Block's speed) = (pixels it should move)/(time)/65
If i remember correctly... Then this should be the formula for making pixel perfect block movements. Keep in mind that the distance is measured in pixels, which means that for 1 block you need to move it 32 pixels.
I might've messed up in punctuation though.
The correct formula to make layers move in a X blocks in this:
32 * x / y / 65. DarkMatt posted a guide for this a long time ago that I made sure to memorize, because it works. I should know, I've been using this for a very long time now. You'll probably get a ridiculous decimal, but I usually just use the first four digits after the decimal point. However, with faster speeds/longer distances, you may still need to play around with the result a bit.
32 = Number of pixels in a given tile, of course.
x = How many tile spaces should this layer move?
y = How many seconds should this take?
65 = Maximum framerate.
That's exactly what I just said but okay.
|
|
|
|
|
|
|
|
|
-
RudeGuy
- Bowser

- Posts: 4994
- Joined: Fri Dec 27, 2013 7:36 am
- Flair: local guy
Postby RudeGuy » Sat Apr 12, 2014 8:03 am
Well, the block's speed is the same as the time. In the level editor is the delay.
|
|
|
|
|
|
|
|
|
-
Cacazk
- Tweeter

- Posts: 147
- Joined: Sun Mar 09, 2014 10:27 pm
Postby Cacazk » Sat Apr 12, 2014 9:33 am
I know how this works. But difissil is yes.
|
|
|
|
|
|
|
|
|
-
SMBXxer
- Fuzzy

- Posts: 1023
- Joined: Fri Dec 20, 2013 4:33 pm
Postby SMBXxer » Tue Apr 22, 2014 4:46 pm
Wow! These graphics are very well designed! I can see these in lots of levels in the future. Good work.
|
|
|
|
|
|
|
|
|
-
Destiny
- Volcano Lotus

- Posts: 572
- Joined: Tue Apr 22, 2014 2:40 pm
Postby Destiny » Tue Apr 22, 2014 7:39 pm
Nossa caiozk, seu inglês é incrível!
Is simple but i liked it.
|
|
|
|
|
Return to “Graphics”
Users browsing this forum: mintz and 3 guests
|