NativeEngine
Namespace:
namespace Lenga\Engine\Core;
class NativeEngine
Example
use Lenga\Engine\Core\Behaviour;
class EngineAccess extends Behaviour
{
public function update(): void
{
// The NativeEngine is an internal class used by the Lenga Engine framework
// to interact with the native C++ engine layer. It is not typically
// instantiated or used directly in game scripts.
//
// Instead, use the provided public APIs like Application, Physics3D,
// Time, Input, Debug, and other core classes to interact with the engine.
Debug::log('Access the engine through public APIs');
}
}