forked from LeenkxTeam/LNXSDK
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			293 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			293 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from lnx.logicnode.lnx_nodes import *
 | 
						|
 | 
						|
class ActiveSceneNode(LnxLogicTreeNode):
 | 
						|
    """Returns the active scene."""
 | 
						|
    bl_idname = 'LNActiveSceneNode'
 | 
						|
    bl_label = 'Get Scene Active'
 | 
						|
    lnx_version = 1
 | 
						|
 | 
						|
    def lnx_init(self, context):
 | 
						|
        self.add_output('LnxDynamicSocket', 'Scene')
 |