woden-core-examples

Description

Examples that use the different Woden Engine core APIs

Details

Source
GitHub
License
MIT
Stars
3
Forks
2
Created
Nov. 8, 2021
Updated
Feb. 24, 2026

Categories

Games Education / Howto

README excerpt

# WODEN Engine Core Heavy Example
This repository contains multiple examples that use the WODEN Engine Core APIs that rely on heavy assets

## Loading in Pharo:

These examples can be loaded in Pharo with by running the following in Playground:

```smalltalk
EpMonitor disableDuring: [
  Author useAuthor: 'Load' during: [
      Metacello new
         baseline: 'WodenCoreExamples';
         repository: 'github://desromech/woden-core-examples';
         onConflictUseIncoming;
         load
   ]
]
```

See the different packages that start with the **WodenCoreExamples-** to check
the different examples.

## Loading in Squeak:

These examples can be loaded in Squeak by using the following script: 

```smalltalk
Metacello new
    baseline: 'WodenCoreExamples';
    repository: 'github://desromech/woden-core-examples';
    onConflictUseIncoming;
    load
```

On Squeak the AbstractGPU library must be installed manually, look for the latest release on https://github.com/desromech/abstract-gpu for find the binary library. Download the release for your platform in a folder that can be found by the Squeak VM, and perform a save and quit of the image.
← Back to results