2
0
Эх сурвалжийг харах

add author attribution to csm

Garrett Johnson 5 жил өмнө
parent
commit
8604213c9d

+ 4 - 0
examples/jsm/csm/CSM.js

@@ -1,3 +1,7 @@
+/**
+ * @author vHawk / https://github.com/vHawk/
+ */
+
 import {
 	Vector2,
 	Vector3,

+ 4 - 0
examples/jsm/csm/Frustum.js

@@ -1,3 +1,7 @@
+/**
+ * @author vHawk / https://github.com/vHawk/
+ */
+
 import { MathUtils, Vector3 } from '../../../build/three.module.js';
 import FrustumVertex from './FrustumVertex.js';
 

+ 4 - 0
examples/jsm/csm/FrustumBoundingBox.js

@@ -1,3 +1,7 @@
+/**
+ * @author vHawk / https://github.com/vHawk/
+ */
+
 export default class FrustumBoundingBox {
 
 	constructor() {

+ 4 - 0
examples/jsm/csm/FrustumVertex.js

@@ -1,3 +1,7 @@
+/**
+ * @author vHawk / https://github.com/vHawk/
+ */
+
 export default class FrustumVertex {
 
 	constructor( x, y, z ) {

+ 4 - 0
examples/jsm/csm/Shader.js

@@ -1,3 +1,7 @@
+/**
+ * @author vHawk / https://github.com/vHawk/
+ */
+
 import { ShaderChunk } from '../../../build/three.module.js';
 
 export default {