Skip to content

Commit

Permalink
fix: fix default render options
Browse files Browse the repository at this point in the history
  • Loading branch information
hongfaqiu committed Oct 29, 2024
1 parent b0abf43 commit fb34e43
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
7 changes: 7 additions & 0 deletions example/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# example

## 0.3.6

### Patch Changes

- Updated dependencies
- [email protected]

## 0.3.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "example",
"private": true,
"version": "0.3.5",
"version": "0.3.6",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
6 changes: 6 additions & 0 deletions packages/cesium-wind-layer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# cesium-wind-layer

## 0.5.2

### Patch Changes

- fix: fix default render options

## 0.5.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cesium-wind-layer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cesium-wind-layer",
"version": "0.5.1",
"version": "0.5.2",
"publishConfig": {
"access": "public"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/cesium-wind-layer/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ export class WindLayer {

static defaultOptions: WindLayerOptions = {
particlesTextureSize: 100,
particleHeight: 0,
lineWidth: 10.0,
speedFactor: 10,
dropRate: 0.003,
dropRateBump: 0.001,
particleHeight: 1000,
dropRateBump: 0.01,
speedFactor: 1.0,
lineWidth: 10.0,
colors: ['white'],
flipY: false,
useViewerBounds: false // 默认使用全局范围
Expand Down

0 comments on commit fb34e43

Please sign in to comment.