Cool, but have you tried my 1D game :D ?
Denys Shust
Creator of
Recent community posts
Please, unhook the camera from the player, make it smoothly follow the player.
The script for the Camera :
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CameraFollow : MonoBehaviour
{
[SerializeField] private Vector3 offset;
[SerializeField] private Transform target;
[SerializeField] private float translateSpeed;
[SerializeField] private float rotateSpeed;
private void FixedUpdate()
{
HandleRotation();
HandleTranslation();
}
private void HandleTranslation()
{
var targetPosition = target.TransformPoint(offset);
transform.position = Vector3.Lerp(transform.position, targetPosition, translateSpeed * Time.deltaTime);
}
private void HandleRotation()
{
var direction = target.position - transform.position;
var rotation = Quaternion.LookRotation(direction, Vector3.up);
transform.rotation = Quaternion.Lerp(transform.rotation, rotation, rotateSpeed * Time.deltaTime);
}
}
In TriJam`s HALL OF FAME the winner of 161 jam is Multiverse Runner, BUT when i look to real jam rating i saw, that the winner is I HOPE YOU LIKE PINK. The game Multiverse Runner is on the 5-th place... WTF ? :D
Thanks, friend. Minecraft screenshots were added temporary. I am going to delete them right now.
This game will have some severe changes, including gameplay mechanics.
This game would have more content and would be more developed if fascist russia had not attacked my peaceful Ukraine. Our cities are being bombed, civilians are being shot at, people are dying from humanitarian catastrophes. russian soldiers are fucking terrorists, russian authorities are liars and murderers.
I am currently sitting in bomb shelter with my family, we are scared.