摘要: 对于墙纹理效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialBrick{ color?: any, speed?: number, brickColor?: any, mortarColor?:any, brickSize 阅读全文
posted @ 2022-01-20 17:05 haibalai 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 对于沥青墙纹理效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialAsphalt{ asphaltColor: any, bumpSize : 0.02, roughness : 0.2 } 对于沥青墙纹理我们叫 Mater 阅读全文
posted @ 2022-01-20 17:04 haibalai 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 对于扫描线效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialScan{ color?: any, speed?: number, } 对于扫描线我们叫 MaterialScan ```javascript import { 阅读全文
posted @ 2022-01-20 17:03 haibalai 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 对于电弧效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialElec{ color?:any, speed?:number } 对于电弧我们叫 MaterialElec ```javascriptimport { Mater 阅读全文
posted @ 2022-01-20 17:02 haibalai 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 对于水波纹墙效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialWallRipple{ color?: any, speed?: number, count: number, } 对于水波纹墙我们叫 MaterialWall 阅读全文
posted @ 2022-01-20 17:01 haibalai 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 对于水波纹效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialWaterRipple{ color?: any, speed?: number, count?: number, gradient?: number } 对于轨 阅读全文
posted @ 2022-01-20 17:00 haibalai 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 对于扩散圆效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialDiffusionCircle{ color?: any, speed?: number, type?: EMaterialDiffusionCircle, } 阅读全文
posted @ 2022-01-20 17:00 haibalai 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 对于闪烁线效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialFlicker{ color?:any, speed?:number, } 对于轨迹图片我们叫 MaterialFlicker ```javascript imp 阅读全文
posted @ 2022-01-20 16:59 haibalai 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 对于动态流线效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialDynamicFlow{ color?:any, speed?:number, opacity?:number, percent?:number, } 对于动态 阅读全文
posted @ 2022-01-20 16:58 haibalai 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 对于轨迹图片效果 我们先定义一下他的interface, 方便使用的人知道他的调用参数 export interface PMaterialTrailImage { color?: any; speed?: number; image: string; count?: number; directi 阅读全文
posted @ 2022-01-20 16:56 haibalai 阅读(173) 评论(0) 推荐(0) 编辑