Skip to content

Commit

Permalink
adding orb defense and notes
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardTMiles committed May 4, 2024
1 parent e9aab4e commit 0ac5d93
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 64 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build and Deploy
on: [push]
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: macos-latest
strategy:
matrix:
node-version: [ 20.x ] # 18.x,
steps:
- name: actions/checkout@v3 🛎️
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install # --legacy-peer-deps
- run: npm run build
- name: JamesIves/github-pages-deploy-action@v4 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,9 @@ dist

# TernJS port file
.tern-port

# intellij
.idea

# mac
.DS_Store
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

11 changes: 0 additions & 11 deletions .idea/aws.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/inspectionProfiles/Project_Default.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/jsLibraryMappings.xml

This file was deleted.

13 changes: 0 additions & 13 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

6 changes: 0 additions & 6 deletions src/examples/OrbDefence.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
import React, {Component} from "react";
import {Matrix4} from "assets/js/cuon-matrix";
import {getWebGLContext, iWebGLRenderingContext} from "assets/js/cuon-utils";


const a_Face = 'a_Face';
const a_Color = 'a_Color';


// @link https://sites.google.com/site/webglbook/home/chapter-3
Expand Down

0 comments on commit 0ac5d93

Please sign in to comment.