ISnizzle's Avatar
Member
Level 3
Apprentice Miner
0

Forum Posts

1 - 1 of 1

    ISnizzle
    05/30/2016 1:17 pm
    Level 3 : Apprentice Miner
    ISnizzle's Avatar
    Developer:
    Age:16
    Timezone: Eastern
    Skype: xnwxvenom
    Experience: I have a lot of experience coding in java script and c# also i am good at all things essentials group manager and almost every plugin you have.
    Rate yourself out of 10 be honest:8
    Proof:(better chances with proof):
    using UnityEngine;

    [RequireComponent(typeof(PlayerMotor))]

    public class PlayerController : MonoBehaviour {


    [SerializeField]
    private float speed = 5f;

    [SerializeField]
    private float lookSensitivity = 3f;


    private PlayerMotor motor;

    void Start ()
    {
    motor = GetComponent<PlayerMotor>();
    }


    void Update()
    {
    float _xMov = Input.GetAxisRaw("Horizontal");
    float _zMov = Input.GetAxisRaw("Vertical");

    Vector3 _movHorizontal = transform.right * _xMov;
    Vector3 _movVertical = transform.forward * _zMov;

    Vector3 _velocity = (_movHorizontal + _movVertical).normalized * speed;

    motor.Move(_velocity);

    float _yRot = Input.GetAxisRaw("Mouse X");

    Vector3 _rotation = new Vector3(0f, _yRot, 0f) * lookSensitivity;

    motor.Rotate(_rotation);

    float _xRot = Input.GetAxisRaw("Mouse Y");

    Vector3 _cameraRotation = new Vector3(_xRot, 0f, 0f) * lookSensitivity;

    motor.RotateCamera(_cameraRotation);
    }

    }

    Skills:Creating Video Games, Administration of a server, Creating plugins, Configuring plugins
    Can you make plugins:yes
    Are you a fast worker:In the middle
    1

1 - 1 of 1

Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome