using UnityEngine;
using System.Collections;
using UnityStandardAssets.CrossPlatformInput;
public class CharacterController2 : MonoBehaviour {
public float maxSpeed = 10f;
public bool facingRight = true;
public float move;
public int InputAxis;
bool BoolSpeed;
Animator anim;
// Use this for initialization
void Start () {
anim = GetComponent<Animator> ();
}
// Update is called once per frame
void FixedUpdate () {
if (BoolSpeed) {
Move();
}
if (move > 0 && !facingRight)
Flip ();
else if (move < 0 && facingRight)
Flip ();
}
public void Move(int InputAxis){
move = InputAxis;
this.GetComponent<Rigidbody2D>().velocity = new Vector2 (move * maxSpeed, GetComponent<Rigidbody2D>().velocity.y);
}
public void Walk(int InputAxis){
anim.SetBool ("BoolSpeed", true);
//Включает анимацию ходьбы
BoolSpeed = true;
}
public void Idle(int InputAxis){
anim.SetBool ("BoolSpeed", false);
//Включает анимацию пакоя
BoolSpeed = false;
}
void Flip() {
facingRight = !facingRight;
Vector3 theScale = transform.localScale;
theScale.x *= -1;
transform.localScale = theScale;
}
}
using UnityEngine;
using System.Collections;
using UnityStandardAssets.CrossPlatformInput;
public class CharacterController2 : MonoBehaviour {
public float maxSpeed = 10f;
public bool facingRight = true;
public float move;
public int InputAxis;
bool BoolSpeed;
Animator anim;
// Use this for initialization
void Start () {
anim = GetComponent<Animator> ();
}
// Update is called once per frame
void FixedUpdate () {
if (BoolSpeed){
Move();
if (move > 0 && !facingRight)
Flip ();
else if (move < 0 && facingRight)
Flip ();
}
}
public void Move(int InputAxis){
move = InputAxis;
this.GetComponent<Rigidbody2D>().velocity = new Vector2 (move * maxSpeed, GetComponent<Rigidbody2D>().velocity.y);
}
public void Walk(int InputAxis){
anim.SetBool ("BoolSpeed", true);
}
public void Idle(int InputAxis){
anim.SetBool ("BoolSpeed", false);
}
void Flip() {
facingRight = !facingRight;
Vector3 theScale = transform.localScale;
theScale.x *= -1;
transform.localScale = theScale;
}
}
using UnityEngine;
using System.Collections;
using UnityStandardAssets.CrossPlatformInput;
public class CharacterController2 : MonoBehaviour {
public float maxSpeed = 10f;
public bool facingRight = true;
public float move;
public int InputAxis;
bool BoolSpeed;
Animator anim;
// Use this for initialization
void Start () {
anim = GetComponent<Animator> ();
}
// Update is called once per frame
void FixedUpdate () {
if (BoolSpeed){
move = InputAxis;
this.GetComponent<Rigidbody2D>().velocity = new Vector2 (move * maxSpeed, GetComponent<Rigidbody2D>().velocity.y);
if (move > 0 && !facingRight)
Flip ();
else if (move < 0 && facingRight)
Flip ();
}
}
public void Walk(int InputAxis){
anim.SetBool ("BoolSpeed", true);
}
public void Idle(int InputAxis){
anim.SetBool ("BoolSpeed", false);
}
void Flip() {
facingRight = !facingRight;
Vector3 theScale = transform.localScale;
theScale.x *= -1;
transform.localScale = theScale;
}
}
using UnityEngine;
using System.Collections;
using UnityStandardAssets.CrossPlatformInput;
public class CharacterController2 : MonoBehaviour {
public float maxSpeed = 10f;
public bool facingRight = true;
public float move;
public int InputAxis;
Animator anim;
// Use this for initialization
void Start () {
anim = GetComponent<Animator> ();
}
// Update is called once per frame
void FixedUpdate () {
move = InputAxis;
GetComponent<Rigidbody2D>().velocity = new Vector2 (move * maxSpeed, GetComponent<Rigidbody2D>().velocity.y);
if (move > 0 && !facingRight)
Flip ();
else if (move < 0 && facingRight)
Flip ();
}
void Flip() {
facingRight = !facingRight;
Vector3 theScale = transform.localScale;
theScale.x *= -1;
transform.localScale = theScale;
}
}
using UnityEngine;
using System.Collections;
using UnityStandardAssets.CrossPlatformInput;
public class CharacterController2 : MonoBehaviour {
public float maxSpeed = 10f;
public bool facingRight = true;
public float move;
public int InputAxis;
bool BoolSpeed;
Animator anim;
// Use this for initialization
void Start () {
anim = GetComponent ();
}
// Update is called once per frame
void FixedUpdate () {
if (BoolSpeed) {
move = InputAxis;
this.GetComponent ().velocity = new Vector2 (move * maxSpeed, GetComponent ().velocity.y);
}
if (move > 0 && !facingRight)
Flip ();
else if (move < 0 && facingRight)
Flip ();
}
public void Walk(int InputAxis){
anim.SetBool ("BoolSpeed", true);
//Включает анимацию ходьбы
BoolSpeed = true;
}
public void Idle(int InputAxis){
anim.SetBool ("BoolSpeed", false);
//Включает анимацию пакоя
BoolSpeed = false;
}
void Flip() {
facingRight = !facingRight;
Vector3 theScale = transform.localScale;
theScale.x *= -1;
transform.localScale = theScale;
}
}