-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from torin-asakura/feat/3d-elements
feat/3d-elements
- Loading branch information
Showing
132 changed files
with
8,788 additions
and
33 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file added
BIN
+57.8 KB
.yarn/cache/@react-spring-animated-npm-9.7.3-4aff527e22-158848e387.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.56 KB
.yarn/cache/@types-offscreencanvas-npm-2019.7.3-a966f946e3-21fe9b9f96.zip
Binary file not shown.
Binary file added
BIN
+12.3 KB
.yarn/cache/@types-react-reconciler-npm-0.26.7-41be099833-59ce0c7fa8.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.94 KB
.yarn/cache/react-three-fiber-npm-0.0.0-deprecated-29c586a9e5-1da10871e2.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
527 changes: 527 additions & 0 deletions
527
.yarn/patches/@react-three-drei-npm-8.20.2-c18668bc6a.patch
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
diff --git a/animation/MMDPhysics.d.ts b/animation/MMDPhysics.d.ts | ||
index eb3f20e27e4d6dd990fd1557bb9a5a828665b4f9..f73aa23dd11153f3872f9a78e9e73a9938f717f7 100644 | ||
--- a/animation/MMDPhysics.d.ts | ||
+++ b/animation/MMDPhysics.d.ts | ||
@@ -1,4 +1,4 @@ | ||
-import { Bone, Euler, Matrix4, Object3D, Quaternion, SkinnedMesh, Vector3 } from 'three' | ||
+import { Bone, Euler, Matrix4, Object3D, Quaternion, SkinnedMesh, Vector3, MeshBasicMaterial } from 'three' | ||
|
||
export interface MMDPhysicsParameter { | ||
unitStep?: number | undefined | ||
@@ -110,10 +110,10 @@ export class Constraint { | ||
} | ||
|
||
export class MMDPhysicsHelper extends Object3D { | ||
- mesh: THREE.SkinnedMesh | ||
+ mesh: SkinnedMesh | ||
physics: MMDPhysics | ||
- materials: [THREE.MeshBasicMaterial, THREE.MeshBasicMaterial, THREE.MeshBasicMaterial] | ||
+ materials: [MeshBasicMaterial, MeshBasicMaterial, MeshBasicMaterial] | ||
|
||
- constructor(mesh: THREE.SkinnedMesh, physics: MMDPhysics) | ||
+ constructor(mesh: SkinnedMesh, physics: MMDPhysics) | ||
dispose(): void | ||
} | ||
diff --git a/utils/RoughnessMipmapper.d.ts b/utils/RoughnessMipmapper.d.ts | ||
index 80c0f29226f2816f0de9333682821780817fefec..8d724dee5f0967807b781b4d202db3194836906d 100644 | ||
--- a/utils/RoughnessMipmapper.d.ts | ||
+++ b/utils/RoughnessMipmapper.d.ts | ||
@@ -1,8 +1,8 @@ | ||
-import { WebGLRenderer } from 'three' | ||
+import { WebGLRenderer, Material } from 'three' | ||
|
||
export class RoughnessMipmapper { | ||
constructor(renderer: WebGLRenderer) | ||
|
||
- generateMipmaps(material: THREE.Material): void | ||
+ generateMipmaps(material: Material): void | ||
dispose(): void | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
declare module '*.gltf' { | ||
const content: string | ||
export default content | ||
} | ||
|
||
declare module '*.bin' {} | ||
|
||
declare module '*.glb' { | ||
const content: string | ||
export default content | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
landing/fragments/landing-work-directions/src/work-directions.contants.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import React from 'react' | ||
|
||
import { Cube } from '@ui/3d-elements' | ||
import { Cylinder } from '@ui/3d-elements' | ||
import { Diamond } from '@ui/3d-elements' | ||
import { Isosphere } from '@ui/3d-elements' | ||
import { Pyramid } from '@ui/3d-elements' | ||
import { Ring } from '@ui/3d-elements' | ||
import { Sphere } from '@ui/3d-elements' | ||
import { Pill } from '@ui/3d-elements' | ||
|
||
const elementStyle = { width: 200, height: 140 } | ||
|
||
export const elements = { | ||
RU: { | ||
'Медиа контент': <Cylinder style={elementStyle} />, | ||
'Digital сервисы': <Ring style={elementStyle} />, | ||
'Мобильные приложения': <Isosphere style={elementStyle} />, | ||
'ICO и блокчейн проекты': <Diamond style={elementStyle} />, | ||
'Рекламные агенства': <Sphere style={elementStyle} />, | ||
'Интернет магазины': <Cube style={elementStyle} />, | ||
Стартапы: <Pill style={elementStyle} />, | ||
'IT-компании': <Pyramid style={elementStyle} />, | ||
}, | ||
EN: { | ||
'Media content': <Cylinder style={elementStyle} />, | ||
'Digital services': <Ring style={elementStyle} />, | ||
'Mobile apps': <Isosphere style={elementStyle} />, | ||
'ICO&Blockchain projects': <Diamond style={elementStyle} />, | ||
'Advertising agencies': <Sphere style={elementStyle} />, | ||
'Online shops': <Cube style={elementStyle} />, | ||
Startups: <Pill style={elementStyle} />, | ||
'IT companies': <Pyramid style={elementStyle} />, | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.