Skip to content

Commit

Permalink
Removed all mixamo tags
Browse files Browse the repository at this point in the history
  • Loading branch information
shuvo-hash committed May 3, 2021
1 parent 5273834 commit 15fb69f
Show file tree
Hide file tree
Showing 40 changed files with 28,546 additions and 9,811 deletions.
Empty file modified .gitignore
100644 → 100755
Empty file.
17 changes: 17 additions & 0 deletions .idea/aws.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/react-mixamo.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified LICENSE
100644 → 100755
Empty file.
6 changes: 2 additions & 4 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# ⛹⛹⛹ Mixamo Character Animation Combiner ⛹⛹⛹
# ⛹⛹⛹ Character Animation Combiner ⛹⛹⛹

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## [LIVE HERE 💎](https://nilooy.github.io/mixamo-animation-combiner/)
## [LIVE HERE 💎](https://nilooy.github.io/character-animation-combiner)

## Run Locally

Expand Down
18,382 changes: 18,291 additions & 91 deletions package-lock.json
100644 → 100755

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "react-mixamo",
"name": "character-animation-combiner",
"version": "0.1.0",
"private": true,
"author": {
Expand All @@ -18,7 +18,7 @@
"react-scripts": "3.4.3",
"three": "^0.120.0"
},
"homepage": "mixamo-animation-combiner",
"homepage": "character-animation-combiner",
"scripts": {
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
Expand Down
Empty file modified public/favicon.ico
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion public/index.html
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Mixamo Character Animation Combiner</title>
<title>Character Animation Combiner</title>
<!--Import Google Icon Font-->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
Expand Down
Empty file modified public/logo192.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/logo512.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/manifest.json
100644 → 100755
Empty file.
Empty file modified public/preview.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/robots.txt
100644 → 100755
Empty file.
Empty file modified src/App.js
100644 → 100755
Empty file.
Empty file modified src/assets/img/github.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/assets/img/twitter.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified src/assets/model3d/default.glb
100644 → 100755
Empty file.
Empty file modified src/components/AnimationList.js
100644 → 100755
Empty file.
1 change: 0 additions & 1 deletion src/components/ChangeTexture.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const ChangeTexture = () => {
} = useContext(ModalContext);

useEffect(() => {
console.log(mainModel);
if (mainModel) {
mainModel.traverse((child) => {
if (child.isMesh && typeof child.material.map !== "function") {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Export.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Export = () => {
exporter.parse(
mainModel,
function (result) {
saveArrayBuffer(result, `mixamo-${new Date().getTime()}.glb`);
saveArrayBuffer(result, `cac-${new Date().getTime()}.glb`);
},
{ trs: true, binary: true, animations: animations }
);
Expand All @@ -57,7 +57,7 @@ const Export = () => {
mainModel,
function (result) {
var output = JSON.stringify(result, null, 2);
saveString(output, `mixamo-${new Date().getTime()}.gltf`);
saveString(output, `cac-${new Date().getTime()}.gltf`);
},
{ trs: true, binary: false, animations: animations }
);
Expand Down
Empty file modified src/components/Info.js
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions src/components/Layout.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ const Layout = ({ children }) => {
<nav className="black">
<div className="nav-wrapper ">
<div className="brand-logo center">
Mixamo Character Animation Combiner
Character Animation Combiner
</div>
<ul className="right">
<li>
<a
rel="noopener noreferrer"
style={{ padding: 10 }}
href="https://github.com/nilooy/mixamo-animation-combiner"
href="https://github.com/nilooy/character-animation-combiner"
target="_blank"
>
<img src={GithubImage} alt="github logo" width="40" />
Expand Down
Empty file modified src/components/ModelViewer.js
100644 → 100755
Empty file.
Empty file modified src/components/Preloader.js
100644 → 100755
Empty file.
Empty file modified src/components/UploadButton.js
100644 → 100755
Empty file.
Empty file modified src/components/UploadSection.js
100644 → 100755
Empty file.
Empty file modified src/context/ModelContext.js
100644 → 100755
Empty file.
Empty file modified src/context/createDataContext.js
100644 → 100755
Empty file.
Empty file modified src/helpers/applyBoxUV.js
100644 → 100755
Empty file.
4 changes: 4 additions & 0 deletions src/helpers/loadModel.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ export default (path, type, callback) => {
if (child.isMesh) {
child.castShadow = true;
child.receiveShadow = true;

if (child.isMaterial) {
console.log("asd");
}
}
});

Expand Down
Empty file modified src/helpers/resizeWindow.js
100644 → 100755
Empty file.
Empty file modified src/helpers/setCamera.js
100644 → 100755
Empty file.
Empty file modified src/helpers/setControls.js
100644 → 100755
Empty file.
Empty file modified src/helpers/setLights.js
100644 → 100755
Empty file.
Empty file modified src/index.css
100644 → 100755
Empty file.
Empty file modified src/index.js
100644 → 100755
Empty file.
Empty file modified src/pages/Home.js
100644 → 100755
Empty file.
Empty file modified src/threeExport.js
100644 → 100755
Empty file.
Loading

0 comments on commit 15fb69f

Please sign in to comment.