18 lines
		
	
	
		
			No EOL
		
	
	
		
			620 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			No EOL
		
	
	
		
			620 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
Config.EnableAnimations = true -- Enable/Disable all animated props
 | 
						|
Config.EnablePlayerAnimations = true -- Enable/Disable player interaction animations
 | 
						|
 | 
						|
-- Interaction key configuration
 | 
						|
Config.InteractionKey = {
 | 
						|
    control = 38,  -- Control ID (38 = E, 47 = G, 23 = F, 74 = H, 18 = Enter)
 | 
						|
    display = "E"  -- Display text for UI
 | 
						|
}
 | 
						|
 | 
						|
Config.Messages = {
 | 
						|
    interactButton = "Interact",
 | 
						|
    noAccess = "You don't have access to this object",
 | 
						|
    alreadyInUse = "This object is already in use",
 | 
						|
    menuTitle = "Animated Objects",
 | 
						|
    testAllAnimations = "Test all animations",
 | 
						|
    open = "Open",
 | 
						|
    close = "Close",
 | 
						|
} |