Skip to content
View ArtemShustov's full-sized avatar
:shipit:
:shipit:

Block or report ArtemShustov

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. my-sunny-bakery my-sunny-bakery Public

    Unfinished сozy PSX Game

    C#

  2. catank catank Public archive

    Short story game about cat who can store different types of liquids. Made for SibGameJam May25

    C#

  3. FishTank FishTank Public archive

    Small game for "Pizza Jam"

    C#

  4. blend2fbx blend2fbx Public

    Auto-converts .blend files to .fbx inside Unity

    C# 1

  5. CameraScaler.cs CameraScaler.cs
    1
    using UnityEngine;
    2
    
                  
    3
    namespace Game.Utilities {
    4
    	public class CameraScaler: MonoBehaviour {
    5
    		[SerializeField] private Vector2 _defaultResolution = new Vector2(1280, 720);
  6. LoadFirstScene.cs LoadFirstScene.cs
    1
    using UnityEditor;
    2
    using UnityEditor.SceneManagement;
    3
    
                  
    4
    namespace Game.Utils.Editor {
    5
    	[InitializeOnLoad]