Скрипт управления персонажем
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerControler : MonoBehaviour
{
Rigidbody2D rb;
void Start()
{
rb = GetComponent<Rigidbody2D>();
}
void Update()
{
if (Input.GetKeyDown(KeyCode.Space) && isGround)
{
rb.AddForce(transform.up * 10f, ForceMode2D.Impulse);
}
}
void FixedUpdate()
{
rb.velocity = new Vector2(Input.GetAxis("Horizontal") * 6f, rb.velocity.y);
}
}
Можно ли как то поменять управление на другие клавиши, с другого скрипта? И как это можно сделать?