playMaker

Author Topic: Vector3 Compare save as bool?  (Read 800 times)

ghawst

  • Playmaker Newbie
  • *
  • Posts: 3
Vector3 Compare save as bool?
« on: November 24, 2021, 08:22:35 AM »
I found this older post claiming that the action could be updated from the ecosystem to include saving the result of vector3's as bool, but I cannot find such an action...
Am I missing someathing?

https://hutonggames.com/playmakerforum/index.php?topic=12856.msg59970#msg59970

Edit: Is there no way to save comparisons (in general) as bools? If so, how can I go about making multiple comparisons in order to compare them all as bools to send an event based on that?
« Last Edit: November 25, 2021, 05:20:36 AM by ghawst »

ToxicFrog

  • Beta Group
  • Full Member
  • *
  • Posts: 139
Re: Vector3 Compare save as bool?
« Reply #1 on: November 28, 2021, 01:00:22 PM »
Check the ecosystem for Bool Multi Condition

I use it ALL THE TIME

ghawst

  • Playmaker Newbie
  • *
  • Posts: 3
Re: Vector3 Compare save as bool?
« Reply #2 on: November 28, 2021, 02:42:16 PM »
Check the ecosystem for Bool Multi Condition

I use it ALL THE TIME

Hey, thanks for the response. That seems like a very useful action that I didn't know about, but it only helps with half of my issue.
Thanks to this action I can test multiple bools, but what if one of the things I wanted to test was whether or not one Vector3 is higher than another Vector3.
Vector3 Compare doesn't allow saving the result as a bool... But, weirdly, this post I found in my previous post makes it sound like there would be an action that can do that o.O

djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7616
    • jinxtergames
Re: Vector3 Compare save as bool?
« Reply #3 on: November 28, 2021, 05:12:23 PM »
Hi.
You can try the action(script) that i have a attached below

ghawst

  • Playmaker Newbie
  • *
  • Posts: 3
Re: Vector3 Compare save as bool?
« Reply #4 on: November 29, 2021, 06:26:46 AM »
Hi.
You can try the action(script) that i have a attached below

Thanks! Works great ^^ That's what I've been looking for.