Going negative in min/max?

Non-platform specific questions.

Going negative in min/max?

Postby Hblade » Sat May 11, 2013 6:29 am

Why is this not possible? Does min and max not register numbers below 0?
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Going negative in min/max?

Postby skydereign » Sun May 12, 2013 5:00 am

It is possible. You probably are giving parameters you don't intend, or using min when you are using max.
User avatar
skydereign
 
Posts: 3510
Joined: Mon Jul 28, 2008 8:29 am
Score: 589 Give a positive score

Re: Going negative in min/max?

Postby Hblade » Sun May 12, 2013 5:23 am

May I have an example?
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Going negative in min/max?

Postby skydereign » Sun May 12, 2013 7:39 am

Here.
some actor -> Create Actor -> Script Editor
Code: Select all
if(min(10, -10)==-10)
{
    r=0;
}

All min and max do is return the smaller/larger of the two values you pass it. Nothing tricky.
User avatar
skydereign
 
Posts: 3510
Joined: Mon Jul 28, 2008 8:29 am
Score: 589 Give a positive score

Re: Going negative in min/max?

Postby RippeR7420 » Sun May 12, 2013 5:04 pm

Thats nice to know haha. Whenever i need to use min/max I always did it this way.

Code: Select all
x=rand(10);
x=min(max(x, 5), 10);

//or for the negative direction.

x=rand(-10);
x=min(max(x, -10), -5);


Depending on what random/and or/direction I want the actor to move move in.
CURRENT PROJECTS:

-Olo: The Sword Shaman http://game-editor.com/forum/viewtopic.php?f=4&t=12919

-The Wrath of Blob: (On the back burner)

-StickMcGee - Blast to the Future http://game-editor.com/forum/viewtopic.php?f=4&t=13660
User avatar
RippeR7420
 
Posts: 391
Joined: Mon Apr 27, 2009 4:16 pm
Location: Salt Lake City, Utah.
Score: 23 Give a positive score

Re: Going negative in min/max?

Postby Hblade » Sun May 12, 2013 5:34 pm

Thanks guys =)
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score


Return to General

Who is online

Users browsing this forum: No registered users and 1 guest

cron