mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Lua_api.txt: Clarify entity 'initial_properties' and related deprecation (#7596)
This commit is contained in:
		@@ -5280,10 +5280,15 @@ Entity definition
 | 
			
		||||
Used by `minetest.register_entity`.
 | 
			
		||||
 | 
			
		||||
    {
 | 
			
		||||
    --  Deprecated: Everything in object properties is read directly from here
 | 
			
		||||
 | 
			
		||||
        initial_properties = --[[<initial object properties>]],
 | 
			
		||||
 | 
			
		||||
        initial_properties = {
 | 
			
		||||
            visual = "mesh",
 | 
			
		||||
            mesh = "boats_boat.obj",
 | 
			
		||||
            ...,
 | 
			
		||||
        },
 | 
			
		||||
    --  ^ A table of object properties, see the `Object properties` section.
 | 
			
		||||
    --  ^ Object properties being read directly from the entity definition
 | 
			
		||||
    --    table is deprecated. Define object properties in this
 | 
			
		||||
    --    `initial_properties` table instead.
 | 
			
		||||
        on_activate = function(self, staticdata, dtime_s),
 | 
			
		||||
        on_step = function(self, dtime),
 | 
			
		||||
        on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, dir),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user