playMaker

Author Topic: Post Processing V2 Full Integration  (Read 5894 times)

waveform

  • Playmaker Newbie
  • *
  • Posts: 28
Post Processing V2 Full Integration
« on: July 16, 2019, 07:07:57 PM »
I done a complete integration of post processing v2, damn that`s a lot of work

all 52 actions:



sub parameter in every action



How to use:
the actions is highly optimized and require "Toggle on" the check box above the parameter before get/set/active action



Let me know in comment below if you like it ;)

PS: you are also welcome if want add to ECO system

jeanfabre

  • Administrator
  • Hero Member
  • *****
  • Posts: 15500
  • Official Playmaker Support
Re: Post Processing V2 Full Integration
« Reply #1 on: July 18, 2019, 02:15:24 AM »
Hi,

 woah, lots of work indeed!!


Few things however. in order to let the user define if a property should be set can be streamlined without the extra toggle.

 the property should be set to be using a variable by default, making it show "none", and then that property is ignored.

let's say we have a FsmFloat property "red" for a color action, where you only want to set some colors defined by the user.

so in reset, you do this:

Code: [Select]
red = new FsmFloat {UseVariable=true};
then, during the execution of the action you do:

Quote
if (!red.IsNone)
          {
              _color.r = red.Value;
          }


this way, you don't need an extra toggle. It makes actions take a lot less screen estate


I think it would be a great addition to the ecosystem, would you be ok to make this change? Meanwhile I'll give it a go as well to see how they works.

Bye,

 Jean

waveform

  • Playmaker Newbie
  • *
  • Posts: 28
Re: Post Processing V2 Full Integration
« Reply #2 on: July 18, 2019, 01:17:12 PM »
Greate idea, i will use it to the "Get" actions, but this solution will not work well with "Set" actions, my Reset settings on "set" actions is based by a new post prosessing profile and some value shouldn`t be 0 by default

 
Hi,

 woah, lots of work indeed!!


Few things however. in order to let the user define if a property should be set can be streamlined without the extra toggle.

 the property should be set to be using a variable by default, making it show "none", and then that property is ignored.

let's say we have a FsmFloat property "red" for a color action, where you only want to set some colors defined by the user.

so in reset, you do this:

Code: [Select]
red = new FsmFloat {UseVariable=true};
then, during the execution of the action you do:

Quote
if (!red.IsNone)
          {
              _color.r = red.Value;
          }


this way, you don't need an extra toggle. It makes actions take a lot less screen estate


I think it would be a great addition to the ecosystem, would you be ok to make this change? Meanwhile I'll give it a go as well to see how they works.

Bye,

 Jean

waveform

  • Playmaker Newbie
  • *
  • Posts: 28
Re: Post Processing V2 Full Integration
« Reply #3 on: July 18, 2019, 03:47:55 PM »
Update these"get/active/get active"actions , but did not modify any changes in "set" actions,because my project need those reset settings, if you dont need those settings, you are welcome and modify it

jeanfabre

  • Administrator
  • Hero Member
  • *****
  • Posts: 15500
  • Official Playmaker Support
Re: Post Processing V2 Full Integration
« Reply #4 on: July 19, 2019, 03:34:04 AM »
Hi,

 Cool, yeah, I'll modify them when I'll put them on the Ecosystem.

 Thanks for your work !! we truly appreciate your contribution :)

Bye,

 Jean

nuFF3

  • Beta Group
  • Junior Playmaker
  • *
  • Posts: 74
  • Are we even real?
    • One Month Studio
Re: Post Processing V2 Full Integration
« Reply #5 on: July 22, 2019, 04:45:34 AM »
Cool, I'll try them out today.  ;D

Gua

  • Beta Group
  • Sr. Member
  • *
  • Posts: 309
    • Andrii Vintsevych
Re: Post Processing V2 Full Integration
« Reply #6 on: July 23, 2019, 06:17:33 AM »
@waveform, Thanks! In your screenshot with actions list, I don't see any action related to anti-aliasing. Are there plans to add those actions?

waveform

  • Playmaker Newbie
  • *
  • Posts: 28
Re: Post Processing V2 Full Integration
« Reply #7 on: July 23, 2019, 10:10:13 AM »
basically anti-aliasing is a part of post processing layer component, this means you are able to do that with "Set Property" action, that´s also why i decided not make action for it




@waveform, Thanks! In your screenshot with actions list, I don't see any action related to anti-aliasing. Are there plans to add those actions?

Alatriste

  • Full Member
  • ***
  • Posts: 194
Re: Post Processing V2 Full Integration
« Reply #8 on: July 30, 2019, 06:22:15 AM »
Thanks a lot!

craigz

  • Beta Group
  • Full Member
  • *
  • Posts: 234
    • Haven Made
Re: Post Processing V2 Full Integration
« Reply #9 on: November 03, 2019, 12:07:24 AM »
These make their way onto the Ecosystem yet? :D

nightcorelv

  • Playmaker Newbie
  • *
  • Posts: 27
Re: Post Processing V2 Full Integration
« Reply #10 on: February 09, 2020, 09:45:59 AM »
Thanks, I was searching it a while, this should put on ecosystem to make people easier to find it

jeanfabre

  • Administrator
  • Hero Member
  • *****
  • Posts: 15500
  • Official Playmaker Support
Re: Post Processing V2 Full Integration
« Reply #11 on: February 12, 2020, 02:16:45 AM »
Hi,

 they are now, there is a small bug in PlayMaker that prevent me from doing the mods I wanted, so let's put them like that for now.

Bye,

 Jean