This commit is contained in:
Quella777
2025-08-25 16:30:02 +08:00
commit 32cc2a8e96
1633 changed files with 289456 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
material PineTree/Branch
{
technique
{
pass
{
alpha_rejection greater 128
texture_unit
{
texture branch_2_diffuse.png
}
}
}
}
material PineTree/Bark
{
technique
{
pass
{
texture_unit
{
texture bark_diffuse.png
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 346 KiB

File diff suppressed because one or more lines are too long

16
pine_tree/model.config Normal file
View File

@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<model>
<name>Pine Tree</name>
<version>1.0</version>
<sdf version="1.6">model.sdf</sdf>
<author>
<name>Louise Poubel</name>
<email>louise@osrfoundation.org</email>
</author>
<description>
A conifer evergreen tree.
</description>
</model>

49
pine_tree/model.sdf Normal file
View File

@@ -0,0 +1,49 @@
<?xml version="1.0" ?>
<sdf version="1.6">
<model name="pine_tree">
<static>true</static>
<link name="link">
<collision name="collision">
<geometry>
<mesh>
<uri>model://pine_tree/meshes/pine_tree.dae</uri>
</mesh>
</geometry>
</collision>
<visual name="branch">
<geometry>
<mesh>
<uri>model://pine_tree/meshes/pine_tree.dae</uri>
<submesh>
<name>Branch</name>
</submesh>
</mesh>
</geometry>
<material>
<script>
<uri>model://pine_tree/materials/scripts/</uri>
<uri>model://pine_tree/materials/textures/</uri>
<name>PineTree/Branch</name>
</script>
</material>
</visual>
<visual name="bark">
<geometry>
<mesh>
<uri>model://pine_tree/meshes/pine_tree.dae</uri>
<submesh>
<name>Bark</name>
</submesh>
</mesh>
</geometry>
<material>
<script>
<uri>model://pine_tree/materials/scripts/</uri>
<uri>model://pine_tree/materials/textures/</uri>
<name>PineTree/Bark</name>
</script>
</material>
</visual>
</link>
</model>
</sdf>