Documentation

Scripting
Guide

Learn to code with Crowe Engine using C++, C#, or visual scripting

Scripting Languages

C++ API

For maximum performance, use our native C++ API. Full access to all engine features with zero overhead.

class MyGameObject : public GameObject {
public:
    void Update(float deltaTime) override {
        // Your game logic here
    }
};

C# Scripting

Rapid prototyping with C# scripting. Automatic memory management and easy-to-learn syntax.

Visual Scripting

No coding required. Build game logic with our intuitive node-based visual scripting system.

View Full API