forked from hertog/godot-module-template
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			285 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			285 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| from misc.utility.scons_hints import *
 | |
| 
 | |
| Import("env")
 | |
| 
 | |
| env.add_source_files(env.scene_sources, "*.cpp")
 | |
| 
 | |
| # Chain load SCsubs
 | |
| if not env["disable_physics_2d"]:
 | |
|     SConscript("physics/SCsub")
 | |
| if not env["disable_navigation_2d"]:
 | |
|     SConscript("navigation/SCsub")
 | 
