Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bigtimebuddy committed Jan 19, 2024
0 parents commit 7e92649
Show file tree
Hide file tree
Showing 155 changed files with 126,076 additions and 0 deletions.
Binary file added deploy/demo/images/colormap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/displacement_BG.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/displacement_fish1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/displacement_fish2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/displacement_fish3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/displacement_fish4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/displacement_fish5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/displacement_map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/lightmap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/overlay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added deploy/demo/images/pixijs-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions deploy/demo/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
body {
margin:0;
padding:0;
font-family: Helvetica, sans-serif;
background:#333;
overflow: hidden;
}
#container {
top:0;
left:0;
width:100%;
height:100%;
position:absolute;
overflow: hidden;
}
#stage {
width:100%;
height:100%;
position:absolute;
display:block;
z-index: 0;
}
#logo {
position: absolute;
z-index:1;
width:245px;
height:69px;
top:0;
right:15px;
background:#000;
padding:10px 0;
}
.lil-gui.root {
top:89px !important;
max-height: calc(100% - 89px);
}
.lil-gui .title {
color: #999;
}
.lil-gui.enabled .title {
color: #ea4080;
}
#logo img {
display: block;
margin:8px auto 0;
width: 80%;
}
20 changes: 20 additions & 0 deletions deploy/demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>PixiJS Filters Demo</title>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/font-awesome.min.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://pixijs.download/next-v8/pixi.min.js"></script>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div id="container">
<canvas id="stage" width="300" height="300"></canvas>
<a id="logo" href="http://www.pixijs.com"><img src="images/pixijs-logo.png"></a>
</div>
<script src="index.js"></script>
</body>
</html>
12,997 changes: 12,997 additions & 0 deletions deploy/demo/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit 7e92649

Please sign in to comment.