User Tag List

Page 1 of 2 1 2 LastLast
Results 1 to 10 of 14

Thread: How to make blocks appear one after another?

  1. #1
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCSWF Export Module
    N64Mario's Avatar
    Join Date
    Nov 2008
    Location
    USA
    Posts
    1,308
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    How to make blocks appear one after another?

    Is there a special way of creating platform blocks one after another, after a certain amount of time in the game, like in a puzzle sequence for platforming games?
    Does it require more than one generator, or can it be done with one generator in the objects list? I already have the blocks appear in the game, but they don't work in a sequence. They all appear at once. I was thinking there would be some way to make them work without having to duplicate any of the objects in the frame editor.

  2. #2
    Clickteam Clickteam
    LB's Avatar
    Join Date
    Jun 2007
    Location
    Richardson, Texas, North America
    Posts
    8,937
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    If they are active objects, you can use the "Spread Value" function in the blocks object, and then have a counter/global value that will constantly increase up to a certian value, and then you make an event:
    (Blocks Object)Alterable Value[the spreaded value] <= Counter/Global Value :: Visibility->Make Object Reappear

    That should make them appear one by one every time you add 1 to the counter/global value. To make them dissapear, simple do the same except use the >= operator instead of the <= operator.
    Working as fast as I can on Fusion 3

  3. #3
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCSWF Export Module
    N64Mario's Avatar
    Join Date
    Nov 2008
    Location
    USA
    Posts
    1,308
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    Umm.... Im not exactly sure how the spread value works. is there an example somewhere I can look at?

    Basically, they all have like absolute positions on the level, or part of the stage. They just have a timed sequence of appearing. Much like those appearing/dissapearing blocks from the mega man games. Trying to make them have a sequence like that.

    Would help if I had something to look at, to get an idea whats going on.

  4. #4
    No Products Registered

    Join Date
    Sep 2006
    Location
    Germany
    Posts
    861
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    http://www.create-games.com/article.asp?id=1798

  5. #5
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    RickyRombo's Avatar
    Join Date
    Mar 2008
    Location
    Somewhere between here and there
    Posts
    3,167
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    Well, spread value is just that. It starts at the base (which in this case I believe it is 0) and assigns that value to one of the objects and adds to it (So one object would have 0, the next 1, and so on) Try picturing numbers on each block. That basically sums it up. Then what we're doing is taking the counter, and every so and so seconds or whatever increasing it. So, if the counter = 0 and you are using the event

    counter = Alterable Value A("block")
    -Block: Appear
    the block that was assigned 0 in the spread would appear. And when the counter equals 1, the block assigned with 1 would appear

    This, of course, won't work if you don't have actives but you have backdrops instead.

  6. #6
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCSWF Export Module
    N64Mario's Avatar
    Join Date
    Nov 2008
    Location
    USA
    Posts
    1,308
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    actually... they would only be platforms you can stand on when they are visible. When they disappear again, you wouldn't be able to stand on them.

    So, are you mainly talking about create active object named block1, change alt. value A of that to 1, create another active object in file, named block2, change alt value a to 2 and so on?

  7. #7
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Jun 2006
    Location
    Darlington, UK
    Posts
    3,298
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    No, just using duplicates of the same object. "Spread value" gives duplicates different alterable values in sequence starting at the number you tell it.

  8. #8
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCSWF Export Module
    N64Mario's Avatar
    Join Date
    Nov 2008
    Location
    USA
    Posts
    1,308
    Mentioned
    15 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    Quote Originally Posted by RickyRombo
    Well, spread value is just that. It starts at the base (which in this case I believe it is 0) and assigns that value to one of the objects and adds to it (So one object would have 0, the next 1, and so on) Try picturing numbers on each block. That basically sums it up. Then what we're doing is taking the counter, and every so and so seconds or whatever increasing it. So, if the counter = 0 and you are using the event

    counter = Alterable Value A("block")
    -Block: Appear
    the block that was assigned 0 in the spread would appear. And when the counter equals 1, the block assigned with 1 would appear

    This, of course, won't work if you don't have actives but you have backdrops instead.
    Well, I read through the tutorial on dailyclick, put start of frame, spread 1 to value a "block", and i did what you said counter = value a ("block"). and i had like 4 or 5 blocks on the screen and they ALL appeared at the same time. Maybe I am missing something? Or maybe I don't quite get the concept of spreading values. @_@

    The tutorial mentions about giving enemies damage values (by giving their alt values a #, and when bullet hits enemies, decrease value. value < 0 destroy enemy, etc). i already know that much. But it says spread values has same concept? I donno. I still can't get this to work right after reading it. X_X

  9. #9
    No Products Registered

    Join Date
    Sep 2006
    Location
    Germany
    Posts
    861
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    It is used to ID objects.

    If you have multiple objects each of them gets a unique ID.

    alt value a = Spread value(0)

    First object start with alt value 0
    second with 1 and so on until each object is adressed.

  10. #10
    Clicker Multimedia Fusion 2 DeveloperSWF Export Module
    RickyRombo's Avatar
    Join Date
    Mar 2008
    Location
    Somewhere between here and there
    Posts
    3,167
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: How to make blocks appear one after another?

    counter = alterable value a ("block") should be

    Alterable Value A of ("Block")=counter

    Edit: it won't select a block otherwise

Page 1 of 2 1 2 LastLast

Similar Threads

  1. blocks merging into one another when moving by x
    By lembi2001 in forum Multimedia Fusion 2 - Technical Support
    Replies: 9
    Last Post: 31st March 2010, 01:30 PM
  2. Select adjacent blocks
    By Jacob in forum Multimedia Fusion 2 - Technical Support
    Replies: 16
    Last Post: 31st March 2010, 02:07 AM
  3. Pushing blocks?
    By Mdsx in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 13th December 2009, 07:08 AM
  4. How to make Blocks Change color in MMF2
    By OldGuy in forum Multimedia Fusion 2 - Technical Support
    Replies: 2
    Last Post: 28th October 2008, 07:50 AM
  5. Dropping blocks
    By RobTheBuilder in forum Multimedia Fusion 2 - Technical Support
    Replies: 1
    Last Post: 24th November 2007, 10:50 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
  •