Tile - YMath - Clamp – Ylands

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Ylands editor navbox}}" to "{{Navbox/Ylands}}")
No edit summary
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Image:Ylands_Tile_-_Math_clamp.png]]
<!---
*This instruction will '''clamp''' input [[Ylands Tile - Number literal|'''number''']] between '''0''' and '''1''' (included).
THIS PAGE WAS GENERATED AUTOMATICALLY; DO NOT EDIT IT, OTHERWISE YOUR CHANGES WILL BE LOST DURING FUTURE UPDATE.
-->
== Clamp(Number, Min, Max) ==


[[File:YlandsTile-213.png]]


[[Image:Ylands_Tile_-_Math_clamp2.png]]
<pre>static clamp(number: number, min: number, max: number): number;</pre>
*This instruction will '''clamp''' input [[Ylands Tile - Number literal|'''number''']] between a '''minimum''' and '''maximum''' values (included).
=== Parameters ===
 
==== number ====
 
==== min ====
 
Minimum number
 
==== max ====
 
Maximum number
 
=== Returns ===
 
'''number'''
 
=== Availability ===
 
[[Ylands:Tile Availability - Client|Client]], [[Ylands:Tile Availability - Server|Server]], [[Ylands:Tile Availability - Custom Controller|Custom Controller]]
 
=== Description ===
 
This instruction will '''clamp''' input '''number''' between a '''minimum''' and '''maximum''' values (included).




Line 12: Line 37:


[[Category: Instructions]]
[[Category: Instructions]]
[[Category: Ylands 0.10]]

Revision as of 12:17, 12 November 2021

Clamp(Number, Min, Max)

YlandsTile-213.png

static clamp(number: number, min: number, max: number): number;

Parameters

number

min

Minimum number

max

Maximum number

Returns

number

Availability

Client, Server, Custom Controller

Description

This instruction will clamp input number between a minimum and maximum values (included).