-
-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Nodes: Add CubeMapNode. * Update three.js * Add examples * Update patch and delete examples
- Loading branch information
1 parent
3e28fcd
commit 2348b3a
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule three.js
updated
5 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import Node from "../core/Node.js"; | ||
import TempNode from "../core/TempNode.js"; | ||
import { NodeRepresentation, ShaderNodeObject } from "../shadernode/ShaderNode.js"; | ||
|
||
declare class CubeMapNode extends TempNode { | ||
envNode: Node; | ||
|
||
constructor(envNode: Node); | ||
} | ||
|
||
export const cubeMapNode: (envNode: NodeRepresentation) => ShaderNodeObject<CubeMapNode>; | ||
|
||
export default CubeMapNode; |