mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 21:51:22 +00:00 
			
		
		
		
	 951a1016d3
			
		
	
	
		951a1016d3
		
	
	
	
	
		
			
			Modules can now call: env.module_add_dependencies(name: str, deps: list, optional: bool) To add required or optional dependencies during the "can_build" step. Required dependencies will be checked and the module will be not be enabled when they are missing, printing a warning to notify the user.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			316 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			316 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| def can_build(env, platform):
 | |
|     if env["arch"].startswith("rv"):
 | |
|         return False
 | |
|     env.module_add_dependencies("theora", ["ogg", "vorbis"])
 | |
|     return True
 | |
| 
 | |
| 
 | |
| def configure(env):
 | |
|     pass
 | |
| 
 | |
| 
 | |
| def get_doc_classes():
 | |
|     return [
 | |
|         "VideoStreamTheora",
 | |
|     ]
 | |
| 
 | |
| 
 | |
| def get_doc_path():
 | |
|     return "doc_classes"
 |