Table of Contents

Interface ILuaContainerConfg

Namespace
Cobilas.GodotEngine.GDLua.Interfaces
Assembly
com.cobilas.godot.lua.dll

Defines configuration settings for a Lua container in the Godot engine.

public interface ILuaContainerConfg

Remarks

This interface provides the basic configuration options required for initializing and managing Lua environments within Godot.

Properties

LuaState

Gets the current Lua state instance.

Lua? LuaState { get; }

Property Value

Lua

The Lua state object, or null if not initialized.

OpenLibs

Gets a value indicating whether standard Lua libraries should be loaded.

bool OpenLibs { get; }

Property Value

bool

true to load standard Lua libraries; otherwise, false.

UseCLRPackage

Gets a value indicating whether the CLR package should be available in Lua.

bool UseCLRPackage { get; }

Property Value

bool

true to enable CLR package access from Lua; otherwise, false.