mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-03 23:21:15 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
	
		
			273 B
		
	
	
	
		
			GDScript3
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
	
		
			273 B
		
	
	
	
		
			GDScript3
		
	
	
	
	
	
| 
								 | 
							
								extends InnerA
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								func test():
							 | 
						||
| 
								 | 
							
									super.test()
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class InnerA extends InnerAB:
							 | 
						||
| 
								 | 
							
									func test():
							 | 
						||
| 
								 | 
							
										print("InnerA.test")
							 | 
						||
| 
								 | 
							
										super.test()
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									class InnerAB extends InnerB:
							 | 
						||
| 
								 | 
							
										func test():
							 | 
						||
| 
								 | 
							
											print("InnerA.InnerAB.test")
							 | 
						||
| 
								 | 
							
											super.test()
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class InnerB:
							 | 
						||
| 
								 | 
							
									func test():
							 | 
						||
| 
								 | 
							
										print("InnerB.test")
							 |