Skip to content
Snippets Groups Projects
Select Git revision
  • b1f7a76fdcc9ea087045f08a693e73393a96fb85
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

CheckServer.cs

Blame
  • ButtonHandler.cs 830 B
    using UnityEngine;
    
    namespace PlayerCtrl
    {
        public class ButtonHandler : MonoBehaviour
        {
    
            public string Name;
    
            void OnEnable()
            {
    
            }
    
            public void SetDownState()
            {
                CrossPlatformInputManager.SetButtonDown(Name);
            }
    
    
            public void SetUpState()
            {
                CrossPlatformInputManager.SetButtonUp(Name);
            }
    
    
            public void SetAxisPositiveState()
            {
                CrossPlatformInputManager.SetAxisPositive(Name);
            }
    
    
            public void SetAxisNeutralState()
            {
                CrossPlatformInputManager.SetAxisZero(Name);
            }
    
    
            public void SetAxisNegativeState()
            {
                CrossPlatformInputManager.SetAxisNegative(Name);
            }
    
            public void Update()
            {
    
            }
        }
    }