void Update()
    {
        // Fade in/out constant highlighting with 'Tab' button
        if (Input.GetKeyDown(KeyCode.Tab))
        {
            ho.ConstantSwitch();
        }
        // Turn on/off constant highlighting with 'Q' button
        else if (Input.GetKeyDown(KeyCode.Q))
        {
            ho.ConstantSwitchImmediate();
        }

        // Turn off all highlighting modes with 'Z' button
        if (Input.GetKeyDown(KeyCode.Z))
        {
            ho.Off();
        }

        AfterUpdate();
    }
Beispiel #2
0
 void OnMouseEnter()
 {
     ho.ConstantParams(clickColor);
     ho.ConstantSwitchImmediate();
 }