1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00
This commit is contained in:
Kevin Levron 2020-10-01 22:52:59 +02:00
parent 705469ea1c
commit 6162fd6960
2 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
export { default as NoisyImage } from './noisy/NoisyImage.js';
export { default as NoisyPlane } from './noisy/NoisyPlane.js';
export { default as NoisySphere } from './noisy/NoisySphere.js';
export { default as NoisyText } from './noisy/NoisyText.js';
export { default as Slider1 } from './sliders/Slider1.vue';

View File

@ -5,6 +5,7 @@ import snoise4 from '../../glsl/snoise4.glsl.js';
export default {
extends: Sphere,
props: {
radius: { type: Number, default: 20 },
widthSegments: { type: Number, default: 128 },
heightSegments: { type: Number, default: 128 },
timeCoef: { type: Number, default: 0.001 },