Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Denys Shust

153
Posts
5
Topics
28
Followers
58
Following
A member registered Oct 10, 2021 · View creator page →

Creator of

Recent community posts

Amazing game ! Completed it and want more 

he-he, nice !
But the hitbox of the cat is not obvious

You know what? I’m buying it! ❤

I’ve got an idea for a community-driven game with user-created content, and this in-game tool is perfect for me!

Got to 0.8+

Such a unusual idea 👌

How should I play it ?🧠

Huh ?

Oh, GOD. This is awesome !

Playing this game was a truly enjoyable experience. The sound design and artwork are also great !

(1 edit)

What a nice game !

Cool, will definitely try this approach

Nope, no updates yet

Чекаю білд !

Hello, how did you fixed the issue with custom url params ?
My Unity WebGL game can not read parameters when uploaded to itch.io (

Цікава гра !
В туалет я так і не потрапив, поки викрадав 7 дезодорант - мене спіймали ) 

Я б радив додати в налаштування можливість виключати розмиття.

Yes, exactly this one. Thanks !

Font is amazing !
Where did you get it ? 
:D

You can`t win

Okay, that is a good idea !

128 seconds survived !

I left it for the better times ☺️ 

Almost all done ✅

Only Robo-girl left 👌

Okay, the witch is done :D

Woah ! Great game !

Спасибо за потраченное время и усилия на его прохождение !
Игра делалась для джема, часов 8, кривую сложности некогда было настраивать :D

I hate it, but i love it :D

Okay, 12 of 15 is my first try. This is pretty polished and cool !

I love that color aberration effect so much :D

Cool game !
Just completed it in dark green style

Cool, but have you tried my 1D game :D ?

Awesome tool !

Oh, no. There is a really bad bug in the game. When I fell off the map with characters, and than I restart the scene, their acceleration and velocity remains the same, they keep falling down, passing through the floor.

(1 edit)

If you type a large number to hours it behaves weirdly. The timer itself do not even starts. But this is a nice tool overall !

Well done :)
I have completed it with joy

Great !

Beautiful !
But... it lags too much, and highscore does not save

Can't run the game (

It says that some data is missing

This is EXTREMELY AWESOME

A masterpiece as always !

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);

    }

}

I LOVE IT !

AI in my game "Super Puper Racing" uses waypoints following technique as the player in your game. :D