This demo has some restrictions since it runs on web assembly. Please
download the asset
for the best experience.
x
Enchantment
Tag
Method
Destructor
ForEach
Distance
StringBuilder
Reciprocal
View
Source
IL Code
Info ↓↓
Theme
Dark
Light
Converts operator comparisons to method ones for less
CPU and memory
usage
*
x
1
2
3
4
5
6
7
8
9
using
System
;
using
UnityEngine
;
public
class
NewBehaviourScript : MonoBehaviour
{
void
Update
()
{
bool
hasTag
=
this
.
tag
==
"myTag"
;
}
}
1
2
3
4
5
6
7
8
9
using
System
;
using
UnityEngine
;
public
class
NewBehaviourScript : MonoBehaviour
{
void
Update
()
{
bool
hasTag
=
this
.
CompareTag
(
"myTag"
);
}
}
Unity Asset Store
|
Website Source
|
Bugs & Feedback