Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# All examples are updated to PIXI v5.2.1
---

# workshop-ddd

### Basics
Expand All @@ -19,4 +22,4 @@
3. Audio Visualisation
4. VR (With WebVR Polyfill)
5. Globe
6. Reflection
6. Reflection
5 changes: 1 addition & 4 deletions advanced/globe/.babelrc
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"presets": ["es2015"],
"plugins": [
"add-module-exports"
]
"presets": ["@babel/preset-env"]
}
1 change: 1 addition & 0 deletions advanced/globe/dist/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
html, body {
margin: 0;
padding: 0;
height: 100%;
}

canvas {
Expand Down
4 changes: 2 additions & 2 deletions advanced/globe/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<title>Globe</title>
<link rel="stylesheet" type="text/css" href="assets/main.css">
</head>
<body>
<!-- <script type="text/javascript" src="assets/pixi.js"></script> -->

<script type="text/javascript" src="bundle.js"></script>
</body>
</html>
Loading