Skip to content

Wes-Coburn/Drifter-Deckbuilding-Game

Repository files navigation

💎Drifter Deckbuilding Game💎

A deckbuilding adventure game in corporate dystopia.
💠Play Now!💠

Created with Unity

Drifter Deckbuilding Game Drifter Deckbuilding Game Drifter Deckbuilding Game Drifter Deckbuilding Game Drifter Deckbuilding Game

👯Collaborators👯

Wesley Coburn (Concept and Programming) --> GitHub

Joe Rouverol (Art and Design) --> Instagram

Alden Muller (Soundtrack) --> SoundCloud

🚩Noteable Files🚩

Managers

🔴 CardManager 🔴 CombatManager 🔴 EffectManager 🔴

Manager classes are attached to gameObjects in ManagerScene and follow the singleton pattern:

// Singleton Pattern
  
public static GameManager Instance { get; private set; }
private void Awake()
{
  if (Instance == null)
  {
    Instance = this;
    DontDestroyOnLoad(gameObject);
  }
  else Destroy(gameObject);
}

Components

Display/component classes are attached to prefabs and loaded from a manager class.

🔴 CardPageDisplay 🔴 UnitCardDisplay 🔴 CardZoom 🔴 DragDrop 🔴

📋License📋

ALL RIGHTS RESERVED

Secret Passage Games