This repository was archived by the owner on Feb 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 497
/
Copy pathtransparency.world
85 lines (84 loc) · 2.8 KB
/
transparency.world
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<sdf version='1.4'>
<world name='default'>
<!-- include sun and ground plane -->
<include><uri>model://sun</uri></include>
<include><uri>model://ground_plane</uri></include>
<model name="test_model">
<static>true</static>
<link name="link">
<visual name="visual_00">
<pose>0 0 0.5 0 0 0</pose>
<transparency>0.0</transparency>
<geometry>
<sphere><radius>0.5</radius></sphere>
</geometry>
<material><script>
<uri>file://media/materials/scripts/gazebo.material</uri>
<name>Gazebo/Grey</name>
</script></material>
</visual>
<visual name="visual_02">
<pose>2 0 0.5 0 0 0</pose>
<transparency>0.2</transparency>
<geometry>
<sphere><radius>0.5</radius></sphere>
</geometry>
<material><script>
<uri>file://media/materials/scripts/gazebo.material</uri>
<name>Gazebo/Grey</name>
</script></material>
</visual>
<visual name="visual_04">
<pose>4 0 0.5 0 0 0</pose>
<transparency>0.4</transparency>
<geometry>
<sphere><radius>0.5</radius></sphere>
</geometry>
<material><script>
<uri>file://media/materials/scripts/gazebo.material</uri>
<name>Gazebo/Grey</name>
</script></material>
</visual>
<visual name="visual_06">
<pose>6 0 0.5 0 0 0</pose>
<transparency>0.8</transparency>
<geometry>
<sphere><radius>0.5</radius></sphere>
</geometry>
<material><script>
<uri>file://media/materials/scripts/gazebo.material</uri>
<name>Gazebo/Grey</name>
</script></material>
</visual>
<visual name="visual_08">
<pose>8 0 0.5 0 0 0</pose>
<transparency>0.8</transparency>
<geometry>
<sphere><radius>0.5</radius></sphere>
</geometry>
<material><script>
<uri>file://media/materials/scripts/gazebo.material</uri>
<name>Gazebo/Grey</name>
</script></material>
</visual>
<visual name="visual_10">
<pose>10 0 0.5 0 0 0</pose>
<transparency>1.0</transparency>
<geometry>
<sphere><radius>0.5</radius></sphere>
</geometry>
<material><script>
<uri>file://media/materials/scripts/gazebo.material</uri>
<name>Gazebo/Grey</name>
</script></material>
</visual>
</link>
</model>
<gui fullscreen='0'>
<camera name='user_camera'>
<pose>5.0 -10.0 1.5 0.0 0.0 1.57079</pose>
<view_controller>orbit</view_controller>
</camera>
</gui>
</world>
</sdf>