aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleApp/FileSystemObject.cs
diff options
context:
space:
mode:
authorlbsa712007-08-15 17:15:41 +0000
committerlbsa712007-08-15 17:15:41 +0000
commit2fe9b8139cc74ff285759af3dcd48d38ec5bc561 (patch)
tree755a798354b020ac8f504d644975e1969370d938 /OpenSim/Region/Examples/SimpleApp/FileSystemObject.cs
parent* Exploring Group/Part from an app perspective. (diff)
downloadopensim-SC_OLD-2fe9b8139cc74ff285759af3dcd48d38ec5bc561.zip
opensim-SC_OLD-2fe9b8139cc74ff285759af3dcd48d38ec5bc561.tar.gz
opensim-SC_OLD-2fe9b8139cc74ff285759af3dcd48d38ec5bc561.tar.bz2
opensim-SC_OLD-2fe9b8139cc74ff285759af3dcd48d38ec5bc561.tar.xz
* Again, FileSystemObject reports filename.
* SimpleApp now featuring spinning box with spinning parts. * Damn. That's cool.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Examples/SimpleApp/FileSystemObject.cs15
1 files changed, 8 insertions, 7 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/FileSystemObject.cs b/OpenSim/Region/Examples/SimpleApp/FileSystemObject.cs
index 920fea7..7cfdb46 100644
--- a/OpenSim/Region/Examples/SimpleApp/FileSystemObject.cs
+++ b/OpenSim/Region/Examples/SimpleApp/FileSystemObject.cs
@@ -7,20 +7,21 @@ using OpenSim.Framework.Types;
7using System.Timers; 7using System.Timers;
8using System.Diagnostics; 8using System.Diagnostics;
9using System.IO; 9using System.IO;
10using Primitive=OpenSim.Region.Environment.Scenes.Primitive; 10using Primitive = OpenSim.Region.Environment.Scenes.Primitive;
11 11
12namespace SimpleApp 12namespace SimpleApp
13{ 13{
14 public class FileSystemObject : SceneObjectGroup 14 public class FileSystemObject : SceneObjectGroup
15 { 15 {
16 public FileSystemObject(Scene world, FileInfo fileInfo, LLVector3 pos) 16 public FileSystemObject(Scene world, FileInfo fileInfo, LLVector3 pos)
17 : base( world, world.RegionInfo.RegionHandle, LLUUID.Zero, world.NextLocalId, pos, BoxShape.Default ) 17 : base(world, world.RegionInfo.RegionHandle, LLUUID.Zero, world.NextLocalId, pos, BoxShape.Default)
18 { 18 {
19 19
20 20
21 float size = (float)Math.Pow((double)fileInfo.Length, (double) 1 / 3) / 5; 21 float size = (float)Math.Pow((double)fileInfo.Length, (double)1 / 3) / 5;
22 // rootPrimitive.ResizeGoup(new LLVector3(size, size, size)); 22 // rootPrimitive.ResizeGoup(new LLVector3(size, size, size));
23 // rootPrimitive.Text = fileInfo.Name; 23 Text = fileInfo.Name;
24 ScheduleGroupForFullUpdate();
24 } 25 }
25 26
26 public override void Update() 27 public override void Update()