C# 클래스 CryEngine.Lua.ScriptTable

Represents a Lua ScriptTable.
파일 보기 프로젝트 열기: PoppermostProductions/CryMono 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Get ScriptTable
ScriptTable System

공개 메소드들

메소드 설명
CallMethod ( string methodName ) : object

Invokes a method on the script table

Execute ( string buffer ) : bool

Global lua script execution

Get ( EntityBase entity ) : ScriptTable
GetTable ( string name ) : ScriptTable

Gets a table within this table.

GetValue ( string name ) : object

Gets a value within the table.

비공개 메소드들

메소드 설명
Get ( IntPtr entityPtr ) : ScriptTable
ScriptTable ( IntPtr scriptPtr ) : System

메소드 상세

CallMethod() 공개 메소드

Invokes a method on the script table
public CallMethod ( string methodName ) : object
methodName string Name of the method
리턴 object

Execute() 공개 정적인 메소드

Global lua script execution
public static Execute ( string buffer ) : bool
buffer string
리턴 bool

Get() 공개 정적인 메소드

public static Get ( EntityBase entity ) : ScriptTable
entity EntityBase
리턴 ScriptTable

GetTable() 공개 메소드

Gets a table within this table.
public GetTable ( string name ) : ScriptTable
name string Name of the table
리턴 ScriptTable

GetValue() 공개 메소드

Gets a value within the table.
public GetValue ( string name ) : object
name string Name of the value
리턴 object