Skip to content

Commit

Permalink
tiny improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Resaki1 committed Jan 17, 2024
1 parent ce3b4e4 commit f11f46f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Planet/Planet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const Planet = () => {
<Sphere args={[size, 48, 48]}>
<meshPhongMaterial
{...texture}
shininess={100}
shininess={5}
specular={"lightblue"}
side={FrontSide}
/>
Expand Down
1 change: 0 additions & 1 deletion src/components/Scene/Scene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ const Scene = () => {
style={{ background: "black" }}
camera={{ far: 10000 }}
frameloop="always"
shadows
dpr={[1, 2]}
>
{isSafari ? <Stats /> : <StatsGl />}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Star/Star.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const Star = () => {
<Image url="/assets/star.png" scale={64} transparent />
</Billboard>
<Sphere args={[16, 16, 16]}>
<meshStandardMaterial
<meshPhongMaterial
color="white"
emissive="white"
emissiveIntensity={512}
Expand Down

0 comments on commit f11f46f

Please sign in to comment.