Hmm,
I can run the sample projects now and the old project that I already created.
However when I create a new project now I get an error message again:
I tried everything I could to run everything with admin rights, with no avail.
Is this related to above problem?
Do I need to change some settings?
In case it's important, this is the short script to run the scene:
// Project: Fish Basher
// Created: 21-12-25
// show all errors
SetErrorMode(2)
// set window properties
SetWindowTitle( "Fish Fish Fang" )
SetWindowSize( 1024, 768, 0 )
SetWindowAllowResize( 1 ) // allow the user to resize the window
// set display properties
SetVirtualResolution( 1024, 768 ) // doesn't have to match the window
SetOrientationAllowed( 1, 1, 1, 1 ) // allow both portrait and landscape on mobile devices
SetSyncRate( 30, 0 ) // 30fps instead of 60 to save battery
SetScissor( 0,0,0,0 ) // use the maximum available screen space, no black borders
UseNewDefaultFonts( 1 )
#include "Pond.scene()"
Pond_setup()
do
Print( Dope)
Pond_sync()
Sync()
loop