Equal Objects: Difference between revisions
Nikitaivanov (talk | contribs) (Created page with "/uploads/Equal Objects.png Outputs `True` if both object inputs are equal. Inputs: * Obj1: first object. Defaults to `None`. * Obj2: second object. Defaults to `None`. Output: * Obj1 = Obj2: whether two objects are the same. == Notes == * This checks if the two inputs are the same *object*, not whether they're the same *block type*. E.g. two Grass Block blocks, placed separately in the world, will create two different and independ...") |
(Standartise description among all Equal X pages) Tags: Mobile edit Mobile web edit Advanced mobile edit |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Block | |||
|image=Equal Objects.png | |||
|type=s | |||
|folder=math | |||
|input1={{Port|o|Obj1}} | |||
|input2={{Port|o|Obj2}} | |||
|output1={{Port|t|<nowiki>Obj1 = Obj2</nowiki>}} | |||
}} | |||
Outputs | Outputs [[True]] if both [[object]] inputs are equal and False otherwise. | ||
== Notes == | == Notes == | ||
* This checks if the two inputs are the same | * This checks if the two inputs are the same ''object'', not whether they're the same ''block type''. E.g. two Grass Block blocks, placed separately in the world, will create two different and independent objects, so they are not equal despite both being made from the same block type. | ||
* Providing only one input will tell you if the variable has no object assigned to it. | * Providing only one input will tell you if the variable has no object assigned to it. | ||
== Related == | |||
* [[Equal Numbers]] | |||
* [[Equal Vectors]] | |||
* [[Equal Truths]] | |||
[[Category:Blocks]] | [[Category:Blocks]] |
Latest revision as of 00:38, 23 August 2025
Equal Objects
Type | Script block |
Collider | None |
Folder | Math |
Ports | |
---|---|
Inputs | Obj1 Obj2 |
Outputs | Obj1 = Obj2 |
Outputs True if both object inputs are equal and False otherwise.
Notes
- This checks if the two inputs are the same object, not whether they're the same block type. E.g. two Grass Block blocks, placed separately in the world, will create two different and independent objects, so they are not equal despite both being made from the same block type.
- Providing only one input will tell you if the variable has no object assigned to it.