Click or drag to resize
Reader3dsResolveAllTextureFiles Property
Gets or sets a Boolean that specifies if all texture files are resolved with ResolveTextureFileCallback (if value is true). If false (by default) the ResolveTextureFileCallback is called only for the missing texture files.

Namespace: Ab3d
Assembly: Ab3d.Reader3ds (in Ab3d.Reader3ds.dll) Version: 9.0.5590.1040
Syntax
C#
public bool ResolveAllTextureFiles { get; set; }

Property Value

Type: Boolean
Remarks

When ResolveAllTextureFiles is set to true, than the ResolveTextureFileCallback is called for every texture file defined in the read 3ds file.

When ResolveAllTextureFiles is set to false (by default), than the ResolveTextureFileCallback is called only for missing texture files. See also ResolveTextureFileCallback for more information how Reader3ds tries to find the texture file and when the file is marked as missing.

See Also