Skip to content

Commit

Permalink
chore(release): 1.0.13 [skip ci]
Browse files Browse the repository at this point in the history
## [1.0.13](v1.0.12...v1.0.13) (2021-01-13)

### Bug Fixes

* tweak demo ([fcf4fc8](fcf4fc8))
  • Loading branch information
semantic-release-bot committed Jan 13, 2021
1 parent 8409b4b commit 44b591a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.13](https://github.com/6eDesign/svelte-three-mograph/compare/v1.0.12...v1.0.13) (2021-01-13)


### Bug Fixes

* tweak demo ([fcf4fc8](https://github.com/6eDesign/svelte-three-mograph/commit/fcf4fc8ca596e8f649b0d37937bcb99f523ec0a2))

## [1.0.12](https://github.com/6eDesign/svelte-three-mograph/compare/v1.0.11...v1.0.12) (2021-01-13)


Expand Down
6 changes: 3 additions & 3 deletions docs/_dist_/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function create_if_block(ctx) {

scene = new Scene({
props: {
background: "#000",
background: "#111",
width: /*width*/ ctx[0],
height: /*height*/ ctx[1],
$$slots: { default: [create_default_slot] },
Expand Down Expand Up @@ -85,7 +85,7 @@ function create_default_slot_3(ctx) {

icosahedron = new /*Icosahedron*/ ctx[4]({
props: {
size: 0.1,
size: 0.08,
position: /*position*/ ctx[13],
rotation: /*rotation*/ ctx[14]
}
Expand Down Expand Up @@ -218,7 +218,7 @@ function create_default_slot_1(ctx) {
};
}

// (28:2) <Scene background="#000" {width} {height}>
// (28:2) <Scene background="#111" {width} {height}>
function create_default_slot(ctx) {
let ambientlight;
let t0;
Expand Down
10 changes: 5 additions & 5 deletions docs/_dist_/OrbitExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function create_default_slot_4(ctx) {
};
}

// (72:0) <Forces rotationalVelocity={[0.03, 0.03, 0.03]} let:rotation let:position>
// (72:0) <Forces rotationalVelocity={[0.01, 0.01, 0.01]} let:rotation let:position>
function create_default_slot_3(ctx) {
let material;
let current;
Expand Down Expand Up @@ -124,7 +124,7 @@ function create_default_slot_3(ctx) {
};
}

// (88:6) <Material metalness={0.2} roughness={0.8} {color}>
// (88:6) <Material metalness={0} roughness={1} {color}>
function create_default_slot_2(ctx) {
let icosahedron;
let current;
Expand Down Expand Up @@ -175,8 +175,8 @@ function create_default_slot_1(ctx) {

material = new Material({
props: {
metalness: 0.2,
roughness: 0.8,
metalness: 0,
roughness: 1,
color: /*color*/ ctx[26],
$$slots: { default: [create_default_slot_2] },
$$scope: { ctx }
Expand Down Expand Up @@ -361,7 +361,7 @@ function create_fragment(ctx) {

forces = new /*Forces*/ ctx[2]({
props: {
rotationalVelocity: [0.03, 0.03, 0.03],
rotationalVelocity: [0.01, 0.01, 0.01],
$$slots: {
default: [
create_default_slot_3,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@6edesign/svelte-three",
"svelte": "src/components/index.js",
"main": "src/components/index.js",
"version": "1.0.12",
"version": "1.0.13",
"license": "MIT",
"keywords": [
"svelte",
Expand Down

0 comments on commit 44b591a

Please sign in to comment.