-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fbaa2d
commit 341612b
Showing
12 changed files
with
135 additions
and
73 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 was deleted.
Oops, something went wrong.
81 changes: 81 additions & 0 deletions
81
src/app/system-apps/desktop/vanta-object/vanta.interfaces.ts
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,81 @@ | ||
|
||
export interface HALO{ | ||
el: string, | ||
mouseControls?: true, | ||
touchControls?: true, | ||
gyroControls?: false, | ||
minHeight?: 200.00, | ||
minWidth?: 200.00, | ||
backgroundColor?:0x131a43, | ||
baseColor?:0x1a59, | ||
size?:1, | ||
amplitudeFactor?:1, | ||
xOffset?:0 | ||
yOffset?:0 | ||
} | ||
|
||
export interface BIRDS{ | ||
el: string, | ||
mouseControls?: true, | ||
touchControls?: true, | ||
gyroControls?: false, | ||
minHeight?: 200.00, | ||
minWidth?: 200.00, | ||
backgroundColor?:0x7192f, | ||
backgroundAlpha?:1, | ||
baseColor?:0x1a59, | ||
color1?:0xff0000, | ||
color2?:0xd1ff, | ||
quantity?:5, | ||
birdSize?:1, | ||
wingSpan?:30, | ||
speedLimit?:5, | ||
separation?:20, | ||
alignment?:20, | ||
cohesion?:20 | ||
} | ||
|
||
export interface WAVE{ | ||
el: string, | ||
mouseControls?: true, | ||
touchControls?: true, | ||
gyroControls?: false, | ||
minHeight?: 200.00, | ||
minWidth?: 200.00, | ||
scale?: 1.00, | ||
scaleMobile?: 1.00, | ||
color?:0x5588, | ||
shininess?:30, | ||
waveHeight?:15, | ||
waveSpeed?:1, | ||
zoom?:1 | ||
} | ||
|
||
export interface RINGS{ | ||
el: string, | ||
mouseControls?: true, | ||
touchControls?: true, | ||
gyroControls?: false, | ||
minHeight?: 200.00, | ||
minWidth?: 200.00, | ||
scale?: 1.00, | ||
scaleMobile?: 1.00, | ||
color?:0x88ff00, | ||
backgroundColor?:0x202428, | ||
backgroundAlpha?:1, | ||
} | ||
|
||
export interface GLOBE{ | ||
el: string, | ||
mouseControls?: true, | ||
touchControls?: true, | ||
gyroControls?: false, | ||
minHeight?: 200.00, | ||
minWidth?: 200.00, | ||
scale?: 1.00, | ||
scaleMobile?: 1.00, | ||
color?:0xff3f81, | ||
color2?:0xffffff, | ||
backgroundColor?:0x23153c, | ||
size?:1 | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.