├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── sampledata │ └── models │ │ ├── IvoryTree │ │ ├── IvoryCanePalmTree.mtl │ │ ├── IvoryCanePalmTree.obj │ │ ├── IvoryCanePalmTree.sfa │ │ ├── IvoryCanePalmTree_BaseColor.png │ │ └── ar_preview_ivory.png │ │ ├── SakuraTree │ │ ├── ar_preview_sakura.png │ │ ├── materials.mtl │ │ ├── model.obj │ │ └── model.sfa │ │ ├── bananaTree │ │ ├── BananaTree.mtl │ │ ├── BananaTree.obj │ │ ├── BananaTree.sfa │ │ └── BananaTree_BaseColor.png │ │ ├── palmTree │ │ ├── AlexandraPalmTree.mtl │ │ ├── AlexandraPalmTree.obj │ │ ├── AlexandraPalmTree.sfa │ │ ├── AlexandraPalmTree_BaseColor.png │ │ └── ar_preview_palm.png │ │ ├── pineTree │ │ ├── ar_preview_pine_tree.png │ │ ├── materials.mtl │ │ ├── model.obj │ │ └── model.sfa │ │ └── tree │ │ ├── CoffeePlant.mtl │ │ ├── CoffeePlant.obj │ │ ├── CoffeePlant.sfa │ │ ├── CoffeePlant_BaseColor.png │ │ └── ar_preview_coffe.png └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ar │ │ └── treeco │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── ar │ │ │ └── treeco │ │ │ ├── ArTree.kt │ │ │ ├── ArTreeData.kt │ │ │ ├── HomeActivity.kt │ │ │ └── TreeAdapter.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ar_preview_banana.png │ │ ├── ar_preview_coffe.png │ │ ├── ar_preview_ivory.png │ │ ├── ar_preview_palm.png │ │ ├── ar_preview_pine_tree.png │ │ ├── ar_preview_sakura.png │ │ ├── glow_border.xml │ │ ├── ic_ar.xml │ │ └── ic_launcher_foreground.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── ar_tree_preview.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── banana_tree.sfb │ │ ├── ivory_tree.sfb │ │ ├── palm_tree.sfb │ │ ├── pine_tree.sfb │ │ └── tree.sfb │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── ar │ └── treeco │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── plant_ar_video.mp4 ├── settings.gradle └── tree.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/sampledata/models/IvoryTree/IvoryCanePalmTree.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/IvoryTree/IvoryCanePalmTree.mtl -------------------------------------------------------------------------------- /app/sampledata/models/IvoryTree/IvoryCanePalmTree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/IvoryTree/IvoryCanePalmTree.obj -------------------------------------------------------------------------------- /app/sampledata/models/IvoryTree/IvoryCanePalmTree.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/IvoryTree/IvoryCanePalmTree.sfa -------------------------------------------------------------------------------- /app/sampledata/models/IvoryTree/IvoryCanePalmTree_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/IvoryTree/IvoryCanePalmTree_BaseColor.png -------------------------------------------------------------------------------- /app/sampledata/models/IvoryTree/ar_preview_ivory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/IvoryTree/ar_preview_ivory.png -------------------------------------------------------------------------------- /app/sampledata/models/SakuraTree/ar_preview_sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/SakuraTree/ar_preview_sakura.png -------------------------------------------------------------------------------- /app/sampledata/models/SakuraTree/materials.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/SakuraTree/materials.mtl -------------------------------------------------------------------------------- /app/sampledata/models/SakuraTree/model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/SakuraTree/model.obj -------------------------------------------------------------------------------- /app/sampledata/models/SakuraTree/model.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/SakuraTree/model.sfa -------------------------------------------------------------------------------- /app/sampledata/models/bananaTree/BananaTree.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/bananaTree/BananaTree.mtl -------------------------------------------------------------------------------- /app/sampledata/models/bananaTree/BananaTree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/bananaTree/BananaTree.obj -------------------------------------------------------------------------------- /app/sampledata/models/bananaTree/BananaTree.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/bananaTree/BananaTree.sfa -------------------------------------------------------------------------------- /app/sampledata/models/bananaTree/BananaTree_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/bananaTree/BananaTree_BaseColor.png -------------------------------------------------------------------------------- /app/sampledata/models/palmTree/AlexandraPalmTree.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/palmTree/AlexandraPalmTree.mtl -------------------------------------------------------------------------------- /app/sampledata/models/palmTree/AlexandraPalmTree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/palmTree/AlexandraPalmTree.obj -------------------------------------------------------------------------------- /app/sampledata/models/palmTree/AlexandraPalmTree.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/palmTree/AlexandraPalmTree.sfa -------------------------------------------------------------------------------- /app/sampledata/models/palmTree/AlexandraPalmTree_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/palmTree/AlexandraPalmTree_BaseColor.png -------------------------------------------------------------------------------- /app/sampledata/models/palmTree/ar_preview_palm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/palmTree/ar_preview_palm.png -------------------------------------------------------------------------------- /app/sampledata/models/pineTree/ar_preview_pine_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/pineTree/ar_preview_pine_tree.png -------------------------------------------------------------------------------- /app/sampledata/models/pineTree/materials.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/pineTree/materials.mtl -------------------------------------------------------------------------------- /app/sampledata/models/pineTree/model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/pineTree/model.obj -------------------------------------------------------------------------------- /app/sampledata/models/pineTree/model.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/pineTree/model.sfa -------------------------------------------------------------------------------- /app/sampledata/models/tree/CoffeePlant.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/tree/CoffeePlant.mtl -------------------------------------------------------------------------------- /app/sampledata/models/tree/CoffeePlant.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/tree/CoffeePlant.obj -------------------------------------------------------------------------------- /app/sampledata/models/tree/CoffeePlant.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/tree/CoffeePlant.sfa -------------------------------------------------------------------------------- /app/sampledata/models/tree/CoffeePlant_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/tree/CoffeePlant_BaseColor.png -------------------------------------------------------------------------------- /app/sampledata/models/tree/ar_preview_coffe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/sampledata/models/tree/ar_preview_coffe.png -------------------------------------------------------------------------------- /app/src/androidTest/java/com/ar/treeco/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/androidTest/java/com/ar/treeco/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/ar/treeco/ArTree.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/java/com/ar/treeco/ArTree.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ar/treeco/ArTreeData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/java/com/ar/treeco/ArTreeData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ar/treeco/HomeActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/java/com/ar/treeco/HomeActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/ar/treeco/TreeAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/java/com/ar/treeco/TreeAdapter.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ar_preview_banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/ar_preview_banana.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ar_preview_coffe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/ar_preview_coffe.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ar_preview_ivory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/ar_preview_ivory.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ar_preview_palm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/ar_preview_palm.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ar_preview_pine_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/ar_preview_pine_tree.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ar_preview_sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/ar_preview_sakura.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/glow_border.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/glow_border.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/ic_ar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/ar_tree_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/layout/ar_tree_preview.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/banana_tree.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/raw/banana_tree.sfb -------------------------------------------------------------------------------- /app/src/main/res/raw/ivory_tree.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/raw/ivory_tree.sfb -------------------------------------------------------------------------------- /app/src/main/res/raw/palm_tree.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/raw/palm_tree.sfb -------------------------------------------------------------------------------- /app/src/main/res/raw/pine_tree.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/raw/pine_tree.sfb -------------------------------------------------------------------------------- /app/src/main/res/raw/tree.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/raw/tree.sfb -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/ar/treeco/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/app/src/test/java/com/ar/treeco/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /plant_ar_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/plant_ar_video.mp4 -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deishelon/PlantATreeAR/HEAD/tree.png --------------------------------------------------------------------------------