Skip to content

2019_08_23_ToDoToday

Éloi Strée edited this page Aug 22, 2019 · 7 revisions

How to publish on Side Quest

Next

  • Interface vs Inheritance vs Modular Inheritance
  • Tag vs Layer vs TagScript

reminder

//https://answers.unity.com/questions/50279/check-if-layer-is-in-layermask.html
    public static bool IsInLayerMask(int layer, LayerMask layermask)
    {
        return layermask == (layermask | (1 << layer));
    }

Clone this wiki locally