mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	 0e3d625737
			
		
	
	
		0e3d625737
		
	
	
	
	
		
			
			Lots of internal API changes and some docstrings were lost in the conversion. I manually salvaged many of them but for all the rendering-related ones, an additional pass is needed. Added missing enum bindings in BaseMaterial3D and VisualServer.
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			985 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			985 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8" ?>
 | |
| <class name="GradientTexture" inherits="Texture2D" version="4.0">
 | |
| 	<brief_description>
 | |
| 		Gradient-filled texture.
 | |
| 	</brief_description>
 | |
| 	<description>
 | |
| 		GradientTexture uses a [Gradient] to fill the texture data. The gradient will be filled from left to right using colors obtained from the gradient. This means the texture does not necessarily represent an exact copy of the gradient, but instead an interpolation of samples obtained from the gradient at fixed steps (see [member width]).
 | |
| 	</description>
 | |
| 	<tutorials>
 | |
| 	</tutorials>
 | |
| 	<methods>
 | |
| 	</methods>
 | |
| 	<members>
 | |
| 		<member name="gradient" type="Gradient" setter="set_gradient" getter="get_gradient">
 | |
| 			The [Gradient] that will be used to fill the texture.
 | |
| 		</member>
 | |
| 		<member name="width" type="int" setter="set_width" getter="get_width" default="2048">
 | |
| 			The number of color samples that will be obtained from the [Gradient].
 | |
| 		</member>
 | |
| 	</members>
 | |
| 	<constants>
 | |
| 	</constants>
 | |
| </class>
 |