mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-04-25 07:28:51 -05:00
Merge pull request #1414 from Santarh/makePublic
Make public constructor of interface class.
This commit is contained in:
commit
88318e067e
|
|
@ -42,7 +42,7 @@ namespace VRMShaders
|
|||
/// </summary>
|
||||
public TextureWrapMode WrapModeV { get; }
|
||||
|
||||
internal DeserializingTextureInfo(byte[] imageData, string dataMimeType, ColorSpace colorSpace, bool useMipmap, FilterMode filterMode, TextureWrapMode wrapModeU, TextureWrapMode wrapModeV)
|
||||
public DeserializingTextureInfo(byte[] imageData, string dataMimeType, ColorSpace colorSpace, bool useMipmap, FilterMode filterMode, TextureWrapMode wrapModeU, TextureWrapMode wrapModeV)
|
||||
{
|
||||
ImageData = imageData;
|
||||
DataMimeType = dataMimeType;
|
||||
|
|
@ -53,7 +53,7 @@ namespace VRMShaders
|
|||
WrapModeV = wrapModeV;
|
||||
}
|
||||
|
||||
internal DeserializingTextureInfo(byte[] imageData, string dataMimeType, ColorSpace colorSpace, SamplerParam samplerParam)
|
||||
public DeserializingTextureInfo(byte[] imageData, string dataMimeType, ColorSpace colorSpace, SamplerParam samplerParam)
|
||||
{
|
||||
ImageData = imageData;
|
||||
DataMimeType = dataMimeType;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user