diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-09 12:54:24 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-09 12:54:24 +0100 | 
| commit | 51863f6e1ebd66cc99fbcce1790af7f55d2761c4 (patch) | |
| tree | 0d73e8815fa1fd09716a91201bc6a59ad6f4d73e | |
| parent | e420b85ba50ef2afd1d98dec28843f17d3dec3ef (diff) | |
| parent | be39808b00876c5a468d51c7aaf5d668271ce889 (diff) | |
Merge pull request #35808 from clayjohn/unexpose-compress-base
Unexpose ARRAY_COMPRESS_BASE
| -rw-r--r-- | doc/classes/Mesh.xml | 3 | ||||
| -rw-r--r-- | scene/resources/mesh.cpp | 1 | 
2 files changed, 0 insertions, 4 deletions
diff --git a/doc/classes/Mesh.xml b/doc/classes/Mesh.xml index b2d979239c..67b6045152 100644 --- a/doc/classes/Mesh.xml +++ b/doc/classes/Mesh.xml @@ -161,9 +161,6 @@  		<constant name="ARRAY_FORMAT_INDEX" value="256" enum="ArrayFormat">  			Mesh array uses indices.  		</constant> -		<constant name="ARRAY_COMPRESS_BASE" value="9" enum="ArrayFormat"> -			Used internally to calculate other [code]ARRAY_COMPRESS_*[/code] enum values. Do not use. -		</constant>  		<constant name="ARRAY_COMPRESS_VERTEX" value="512" enum="ArrayFormat">  			Flag used to mark a compressed (half float) vertex array.  		</constant> diff --git a/scene/resources/mesh.cpp b/scene/resources/mesh.cpp index 0599920303..8f68cc5286 100644 --- a/scene/resources/mesh.cpp +++ b/scene/resources/mesh.cpp @@ -518,7 +518,6 @@ void Mesh::_bind_methods() {  	BIND_ENUM_CONSTANT(ARRAY_FORMAT_WEIGHTS);  	BIND_ENUM_CONSTANT(ARRAY_FORMAT_INDEX); -	BIND_ENUM_CONSTANT(ARRAY_COMPRESS_BASE);  	BIND_ENUM_CONSTANT(ARRAY_COMPRESS_VERTEX);  	BIND_ENUM_CONSTANT(ARRAY_COMPRESS_NORMAL);  	BIND_ENUM_CONSTANT(ARRAY_COMPRESS_TANGENT);  |