Skip to content

Commit

Permalink
ShaderNode: Fix cacheMaps.int -> cacheMaps.ints (#27911)
Browse files Browse the repository at this point in the history
  • Loading branch information
susiwen8 committed Mar 13, 2024
1 parent f763181 commit 93be183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/jsm/nodes/shadernode/ShaderNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ addNodeElement( 'append', append );
export const color = new ConvertType( 'color' );

export const float = new ConvertType( 'float', cacheMaps.float );
export const int = new ConvertType( 'int', cacheMaps.int );
export const int = new ConvertType( 'int', cacheMaps.ints );
export const uint = new ConvertType( 'uint', cacheMaps.uint );
export const bool = new ConvertType( 'bool', cacheMaps.bool );

Expand Down

0 comments on commit 93be183

Please sign in to comment.