SymOntoClay is game AI experimental open source engine.


  Warning logo Purely experimental and very unstable project developed by only one person
Please read the page before starting

callPointer

Represents an asynchronous operation.

An instance of callPointer automatically creates after an asynchronous call.

Methods

Cancel

Cancels executing asynchronous operation.

@a.cancel();
@a = some_fun~~();
wait 1000;
@a.cancel();

You can see example here.