КАК СДЕЛАТЬ 3D УПРАВЛЕНИЕ В UNITY // Туториал по Unity3D

  Рет қаралды 70

Roman - О Unity

Roman - О Unity

11 ай бұрын

Привет! Я знаю что ты пришёл сюда за скриптами :}
Игрок:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
public float speed = 7f;
// Update is called once per frame
private void Update()
{
if (Input.GetKey(KeyCode.W))
{
transform.localPosition += transform.forward * speed * Time.deltaTime;
}
if (Input.GetKey(KeyCode.S))
{
transform.localPosition += -transform.forward * speed * Time.deltaTime;
}
if (Input.GetKey(KeyCode.A))
{
transform.localPosition += -transform.right * speed * Time.deltaTime;
}
if (Input.GetKey(KeyCode.D))
{
transform.localPosition += transform.right * speed * Time.deltaTime;
}
}
}
Камера:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Camera : MonoBehaviour
{
private float mouseX;
private float mouseY;
public float sensitivityMouse = 200f;
public Transform Player;
private void Start()
{
Cursor.lockState = CursorLockMode.Locked;
}
private void Update()
{
mouseX = Input.GetAxis("Mouse X") * sensitivityMouse * Time.deltaTime;
mouseY = Input.GetAxis("Mouse Y") * sensitivityMouse * Time.deltaTime;
Player.Rotate(mouseX * new Vector3(0, 1, 0));
transform.Rotate(-mouseY * new Vector3(1, 0, 0));
}
}

Пікірлер
Normal vs Smokers !! 😱😱😱
00:12
Tibo InShape
Рет қаралды 118 МЛН
Omega Boy Past 3 #funny #viral #comedy
00:22
CRAZY GREAPA
Рет қаралды 29 МЛН
小路飞姐姐居然让路飞小路飞都消失了#海贼王  #路飞
00:47
路飞与唐舞桐
Рет қаралды 94 МЛН
[UNITY3D] Управление 3D персонажем (PC/Mobile)
14:29
ANDROIDHELPER [UNITY3D and more]
Рет қаралды 206 М.
BLENDER BASICS 3 - Selecting Objects
6:27
CG Cookie
Рет қаралды 32 М.
Как сделать Entities Spawner #roblox
5:26
Guilding Light
Рет қаралды 193
Unity vs Unreal | Graphics Comparison
9:30
Sykoo
Рет қаралды 6 МЛН
Make your Characters Interactive! - Animation Rigging in Unity
16:19
Obsidian уроки #3: язык разметки Markdown
5:42
Теплица социальных технологий
Рет қаралды 58 М.
Unity in 100 Seconds
2:45
Fireship
Рет қаралды 1,1 МЛН
Normal vs Smokers !! 😱😱😱
00:12
Tibo InShape
Рет қаралды 118 МЛН