mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
update bullet so it actually works
Moved the addSourceDirectory for physics/Bullet into the Engine/Source/CMakeLists.txt file that way it can actually appear where we expect it to in the solution explorer.
This commit is contained in:
parent
c7be48130a
commit
13fa178cf6
5986 changed files with 1811270 additions and 453803 deletions
44
Engine/lib/bullet/data/pantilt.urdf
Normal file
44
Engine/lib/bullet/data/pantilt.urdf
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0"?>
|
||||
<robot name="pan_tilt">
|
||||
|
||||
<link name="base_link">
|
||||
<inertial>
|
||||
<mass value="1"/>
|
||||
<origin rpy="0 0 0" xyz="0.0 0.0 0.0"/>
|
||||
<inertia ixx="1.0" ixy="0.0" ixz="0.0" iyy="1.0" iyz="0.0" izz="1.0"/>
|
||||
</inertial>
|
||||
</link>
|
||||
|
||||
<joint name="pan_joint" type="revolute">
|
||||
<parent link="base_link"/>
|
||||
<child link="pan_link"/>
|
||||
<origin xyz="0 0 0.1"/>
|
||||
<axis xyz="0 0 1" />
|
||||
<limit effort="300" velocity="0.1" lower="-3.14" upper="3.14"/>
|
||||
<dynamics damping="50" friction="1"/>
|
||||
</joint>
|
||||
|
||||
<link name="pan_link">
|
||||
<inertial>
|
||||
<mass value="1"/>
|
||||
<origin rpy="0 0 0" xyz="0 0 1"/>
|
||||
<inertia ixx="1.0" ixy="0.0" ixz="0.0" iyy="1.0" iyz="0.0" izz="1.0"/>
|
||||
</inertial>
|
||||
</link>
|
||||
|
||||
<joint name="tilt_joint" type="revolute">
|
||||
<parent link="pan_link"/>
|
||||
<child link="tilt_link"/>
|
||||
<origin rpy="0.0 0.0 0.0" xyz="4 0 1"/>
|
||||
<axis xyz="0.0 1.0 0.0" />
|
||||
<limit effort="300" velocity="1.0" lower="-4.64" upper="4.64"/>
|
||||
</joint>
|
||||
|
||||
<link name="tilt_link">
|
||||
<inertial>
|
||||
<mass value="5"/>
|
||||
<origin rpy="0 0 0" xyz="1.001 1 1"/>
|
||||
<inertia ixx="1.0" ixy="0.0" ixz="0.0" iyy="1.0" iyz="0.0" izz="1.0"/>
|
||||
</inertial>
|
||||
</link>
|
||||
</robot>
|
||||
Loading…
Add table
Add a link
Reference in a new issue