 6726e40768
			
		
	
	
		6726e40768
		
			
		
	
	
	
	
		
			
			* adds Lua language support * makes the library generic, allowing for easy extension for more languages * small improvements and fixes
		
			
				
	
	
	
	
		
			462 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			462 B
		
	
	
	
	
	
	
	
Builtin variables
entity
A variable called entity is automatically available to all scripts - it represents bevy entity that the Script component is attached to.
It exposes index property that returns bevy entity index.
It is useful for accessing entity's components from scripts.
It can be used in the following way:
print("Current entity index: " .. entity.index)
entity variable is currently not available within promise callbacks.