We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
three
@types/three
three-stdlib
defaultColor in OutlineEffectParameters for the OutlineEffect class is set to number[]. It should probably be Color
export interface OutlineEffectParameters { defaultThickness?: number | undefined defaultColor?: number[] | undefined defaultAlpha?: number | undefined defaultKeepAlive?: boolean | undefined }
Change it to be Color type. Thank you for providing this library for us developers.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
three
version: 0.150.1@types/three
version: 0.163three-stdlib
version: 2.33.0Problem description:
defaultColor in OutlineEffectParameters for the OutlineEffect class is set to number[]. It should probably be Color
Relevant code:
export interface OutlineEffectParameters {
defaultThickness?: number | undefined
defaultColor?: number[] | undefined
defaultAlpha?: number | undefined
defaultKeepAlive?: boolean | undefined
}
Suggested solution:
Change it to be Color type.
Thank you for providing this library for us developers.
The text was updated successfully, but these errors were encountered: