Skip to content

Enedwait/JumpyCube

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JumpyCube

Jumpy Cube ECS Demo Game.

Play: https://play.google.com/store/apps/details?id=com.okrt.jumpycube (Android)

Brief:

It's a Flappy Bird look-alike game made in Unity with use of ECS.

Main features:

  • ECS (Leoecs-lite).
  • A little bit of Zenject.
  • Everything else is from the scratch.
  • My very original (author's) music. xD

Core Gameplay:

  • I guess, it's like in Flappy Bird)

Requirements

  • Unity 2022
  • Visual Studio 2019
  • Zenject

Extra-code

This should be added to EcsUguiActionBase.cs from LeoECS Lite uGui Bindings

public void SetWidgetName(string widgetName)
{
    if (string.IsNullOrWhiteSpace(widgetName))
        return;

    if (_emitter)
        _emitter.SetNamedObject(_widgetName, null);

    _widgetName = widgetName;

    ValidateEmitter();
    _emitter.SetNamedObject(_widgetName, gameObject);
}

Regards, Oleg [Knight Rider] Tolmachev.

About

JumpyCube ECS Demo Game

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors