World Activity System

v1.0.0

Installation

Follow this guide to install World Activity System in your Unity project.

Prerequisites: Make sure you have Game Creator 2 Core installed before proceeding. Stats module is optional but recommended.

System Requirements

ComponentVersion
Unity Editor2023.x or later
Game Creator 2 CoreLatest version
Game Creator 2 Stats
Cozy WeatherOptional

Prerequisites

Before installing World Activity System, ensure you have:

  • Unity 2023.x or later installed
  • Game Creator 2 Core module installed and working
  • Basic understanding of Game Creator 2 visual scripting
  • Empty or existing project ready for integration

Installation Steps

Follow these steps to install World Activity System in your project:

  1. Import the Package

    Open Unity Package Manager → Add package via git URL or .unitypackage file

  2. Wait for Import

    Unity will import all files and compile scripts. This may take 1-2 minutes.

  3. Verify Installation

    Check that the folder structure exists (see below)

  4. Open Activity Manager

    Menu: Window → Game Creator → Activity Manager

Success: If the Activity Manager window opens, installation was successful!

Project Structure

Verify that the following folder structure exists in your project:

Assets/
├── Plugins/
│   └── GameCreator/
│       └── WorldActivitySystem/
│           ├── Runtime/
│           │   ├── Core/
│           │   ├── Activities/
│           │   ├── Events/
│           │   └── UI/
│           ├── Editor/
│           │   ├── Windows/
│           │   └── Inspectors/
│           └── Resources/
└── (Your project files)

Verify Installation

Test that everything works correctly:

  1. Create a new empty scene
  2. Create empty GameObject → Add Component: World Activity Manager
  3. Check Inspector - component should show with settings
  4. Open Activity Manager window: Window → Game Creator → Activity Manager
  5. Window should show "No activities found" (expected for new project)
Next: Continue to the Getting Started guide to create your first activity!

Troubleshooting

Assembly references missing

Ensure Game Creator 2 Core is installed first. Reimport WAS package.

Activity Manager window empty

Add WorldActivityManager to scene first. Window requires manager instance.

Events not triggering

Enable Scheduler in WorldActivityManager Inspector. Check event conditions.