User Tag List

Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 11 to 20 of 30

Thread: Where should I start being totally new to HWA?

  1. #11
    No Products Registered

    Join Date
    Feb 2009
    Location
    Texas
    Posts
    825
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Where should I start being totally new to HWA?

    is writing a pixel shader hard?

  2. #12
    No Products Registered

    Join Date
    Sep 2006
    Posts
    11
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Where should I start being totally new to HWA?

    So basically, HWA just keeps framerates smooth even with lots of objects? Nothing really else?

  3. #13
    Clicker Multimedia Fusion 2
    BrandonC's Avatar
    Join Date
    Jun 2006
    Location
    PA, USA
    Posts
    931
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Where should I start being totally new to HWA?

    Quote Originally Posted by chrispiss
    So basically, HWA just keeps framerates smooth even with lots of objects? Nothing really else?
    Well besides the addition of pixel shaders, yeah that's it really. It doesn't improve hard programed performance (events) but it defiantly does a hell of a job at sustaining framerate no matter what's graphically going on.

    So all and all, I mean it's nothing stunningly special. It does do exactly what people such as myself, have been waiting years for though... so I welcome it with the widest of open arms.

  4. #14
    No Products Registered

    Join Date
    Feb 2009
    Location
    Texas
    Posts
    825
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Where should I start being totally new to HWA?

    yea!

  5. #15
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleSWF Export ModuleUnicode Add-on
    Looki's Avatar
    Join Date
    Aug 2006
    Location
    Karlsruhe, Germany
    Posts
    3,741
    Mentioned
    5 Post(s)
    Tagged
    1 Thread(s)

    Re: Where should I start being totally new to HWA?

    Quote Originally Posted by Pixelthief
    The main limitation of HWA is that you can't have multiple pixel shaders, so if you have a semitransparent object, you can't blur it too. The only way to accomplish this is to write your own pixel shader that combines the effects
    Well, semi-transparency is no shader. It's called blend coefficient in HWA. You can combine it with every shader

  6. #16
    Clicker Fusion 2.5 DeveloperHTML5 Export ModuleSWF Export ModuleInstall Creator Pro
    Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Fusion 2.5+ DLC (Steam)Android Export Module (Steam)HTML5 Export Module (Steam)iOS Export Module (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Jul 2006
    Location
    USA
    Posts
    2,982
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    Re: Where should I start being totally new to HWA?

    Quote Originally Posted by Looki
    Quote Originally Posted by Pixelthief
    The main limitation of HWA is that you can't have multiple pixel shaders, so if you have a semitransparent object, you can't blur it too. The only way to accomplish this is to write your own pixel shader that combines the effects
    Well, semi-transparency is no shader. It's called blend coefficient in HWA. You can combine it with every shader
    Just so I understand this, you can't use more than one pixel shader on a specific object? Or do you mean more than one pixel shader period?

  7. #17
    Clicker Multimedia Fusion 2SWF Export Module

    Join Date
    Sep 2006
    Posts
    1,544
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)

    Re: Where should I start being totally new to HWA?

    you can't use more than one pixel shader *per object*. Each object in your game is treated as a polygon, and can only be under a single 'effect' from pixel shaders. However, the blend coefficient isn't an effect, and so you can use both one effect AND semi transparency.

    Think of it like the old 'ink effects' in MMF, where you can only have one at at time. Except now semi-transperency is separate, and works with all of them (as does the RGB shift).


    The problem is when you want to use more than one effect at a time. Say you want to rotate the screen in your game, by using a 'Rotation' pixel shader. Well then you can't also add a subtraction shader in order to do dynamic lighting, and you can't make it blurry, etc etc etc.

    However, you CAN apply one pixel shader to an object in your game, and then ANOTHER pixel shader to your frame itself. And in the next release, you will be able to apply one pixel shader to your entire game window.

    But if you want to have a single object affected by more than one shader, unless clickteam implement multipass (which they won't), you need to write your own pixel shaders. Check out the .fx files in your Effects folder to get an idea

  8. #18
    Clicker Multimedia Fusion 2
    BrandonC's Avatar
    Join Date
    Jun 2006
    Location
    PA, USA
    Posts
    931
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Where should I start being totally new to HWA?

    One thing to keep in mind though is that you can actually change the pixel shaders at runtime. So you can apply a pixel shader to an object and then change it throughout the course of the game. However like said above, you can only have a single pixel shader on an object at one time.

    By the way. I've noticed that if you apply a pixel shader such as Add, to an object, and place it into a layer with a pixel shader, it appears to turn the pixel shader off. So even then, if you want to combine pixel shaders, you need to make a new shader with them both combined.

  9. #19
    No Products Registered

    Join Date
    Sep 2006
    Posts
    11
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Where should I start being totally new to HWA?

    Thanks for the responses guys. I have one last question. Compared to the regular build off MMF2, aside from the things listed in the download thread by Yves, is the HWA beta a solid build to release stuff with? ie, if you're releasing a final version 1.0 of your game/program or whatever, is it stable enough for the open world, or is it best to stick with the latest update of MMF?

    Thanks again

  10. #20
    Clicker Fusion 2.5 DeveloperFusion 2.5+ DLCAndroid Export ModuleSWF Export ModuleUnicode Add-on
    Looki's Avatar
    Join Date
    Aug 2006
    Location
    Karlsruhe, Germany
    Posts
    3,741
    Mentioned
    5 Post(s)
    Tagged
    1 Thread(s)

    Re: Where should I start being totally new to HWA?

    Should be. Games never randomly crashed for me.. there only are some limitations, I think.

Page 2 of 3 FirstFirst 1 2 3 LastLast

Similar Threads

  1. Totally Offline Apps
    By Hazard159 in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 15th September 2012, 11:10 AM
  2. I'm new, and have totally noober questions
    By Blacstar in forum Multimedia Fusion 2 - Technical Support
    Replies: 7
    Last Post: 14th February 2012, 12:29 AM
  3. How to totally hide application
    By Fanotherpg in forum Multimedia Fusion 2 - Technical Support
    Replies: 7
    Last Post: 2nd December 2010, 09:23 AM
  4. Totally lost in using CTRL-X
    By RGBreality in forum Multimedia Fusion 2 - Technical Support
    Replies: 5
    Last Post: 25th May 2010, 09:29 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
  •