Skip to content

Commit

Permalink
Final
Browse files Browse the repository at this point in the history
  • Loading branch information
aditis1204 committed Aug 28, 2020
1 parent 9ae0f5b commit 624ae3f
Show file tree
Hide file tree
Showing 17 changed files with 207 additions and 0 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
18 changes: 18 additions & 0 deletions .idea/codeStyles/Project.xml

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

5 changes: 5 additions & 0 deletions .idea/jarRepositories.xml

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

3 changes: 3 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ dependencies {
implementation 'com.android.support:preference-v14:27.0.0'





implementation 'de.javagl:obj:0.2.1'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true;
Expand Down
Binary file added app/sampledata/cone.fbx
Binary file not shown.
60 changes: 60 additions & 0 deletions app/sampledata/cone.sfa
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
animations: [
{
path: 'sampledata/models/cone.fbx',
},
],
materials: [
{
name: 'unnamed material',
parameters: [
{
baseColor: [
1,
1,
1,
1,
],
},
{
baseColorMap: null,
},
{
normalMap: null,
},
{
interpolatedColor: null,
},
{
metallic: 0,
},
{
metallicMap: null,
},
{
roughness: 1,
},
{
roughnessMap: null,
},
{
opacity: null,
},
],
source: 'build/sceneform_sdk/default_materials/fbx_material.sfm',
},
],
model: {
attributes: [
'Position',
'Orientation',
'BoneIndices',
'BoneWeights',
],
collision: {},
file: 'sampledata/models/cone.fbx',
name: 'cone',
recenter: 'root',
},
version: '0.54:2',
}
Binary file added app/sampledata/pyramid.fbx
Binary file not shown.
60 changes: 60 additions & 0 deletions app/sampledata/pyramid.sfa
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
animations: [
{
path: 'sampledata/models/pyramid.fbx',
},
],
materials: [
{
name: 'unnamed material',
parameters: [
{
baseColor: [
1,
1,
1,
1,
],
},
{
baseColorMap: null,
},
{
normalMap: null,
},
{
interpolatedColor: null,
},
{
metallic: 0,
},
{
metallicMap: null,
},
{
roughness: 1,
},
{
roughnessMap: null,
},
{
opacity: null,
},
],
source: 'build/sceneform_sdk/default_materials/fbx_material.sfm',
},
],
model: {
attributes: [
'Position',
'Orientation',
'BoneIndices',
'BoneWeights',
],
collision: {},
file: 'sampledata/models/pyramid.fbx',
name: 'pyramid',
recenter: 'root',
},
version: '0.54:2',
}
Binary file added app/sampledata/ring.fbx
Binary file not shown.
60 changes: 60 additions & 0 deletions app/sampledata/ring.sfa
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
animations: [
{
path: 'sampledata/models/ring.fbx',
},
],
materials: [
{
name: 'unnamed material',
parameters: [
{
baseColor: [
1,
1,
1,
1,
],
},
{
baseColorMap: null,
},
{
normalMap: null,
},
{
interpolatedColor: null,
},
{
metallic: 0,
},
{
metallicMap: null,
},
{
roughness: 1,
},
{
roughnessMap: null,
},
{
opacity: null,
},
],
source: 'build/sceneform_sdk/default_materials/fbx_material.sfm',
},
],
model: {
attributes: [
'Position',
'Orientation',
'BoneIndices',
'BoneWeights',
],
collision: {},
file: 'sampledata/models/ring.fbx',
name: 'ring',
recenter: 'root',
},
version: '0.54:2',
}
Binary file added app/src/main/assets/cone.sfb
Binary file not shown.
Binary file added app/src/main/assets/pyramid.sfb
Binary file not shown.
Binary file added app/src/main/assets/ring.sfb
Binary file not shown.
Binary file added app/src/main/res/raw/cone.sfb
Binary file not shown.
Binary file added app/src/main/res/raw/pyramid.sfb
Binary file not shown.
Binary file added app/src/main/res/raw/ring.sfb
Binary file not shown.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ buildscript {
allprojects {
repositories {
jcenter()
//maven { url 'https://jitpack.io' }
google()
}
}
Expand Down

0 comments on commit 624ae3f

Please sign in to comment.