Silmaryls wrote:Hello,
Hi, it's me again

Well, yes the transformations of objects are done by adding all parent transforms.
So if a parent is scaled, the child will have the parent scale + his own scale.
There is definitely some sort of bug in the scenegraph transformation code,
the scaling seems totally wrong or I am simply too stupid to use it.
When I add some objects to a parent object, I do this normally to the skybox to show that
the object is in the room, otherwise it doesn't get rendered (why not?), the objects
are ok. This time I had an object which was slightly too big. I scaled it a bit down in 3DMax and now it
was extremely small... 1 pixel only. I tested it some more and when I attach the object to another
object it grows huge and renders over the whole screen.
In my own engine I use following code:
- Code: Select all
private bool UpdateWorld()
{
if (m_WorldUpdate)
{
if (Parent != null)
{
Vector3 ParentWorldScaling = Parent.WorldScaling;
m_WorldRotation = Parent.WorldRotation * m_Rotation;
m_WorldScaling = ParentWorldScaling * m_Scaling;
m_WorldTranslation = Parent.WorldTranslation + ((Parent.WorldRotation * m_Translation) * ParentWorldScaling);
}
else
{
m_WorldTranslation = m_Translation;
m_WorldRotation = m_Rotation;
m_WorldScaling = m_Scaling;
}
m_WorldTransform.Translation = m_WorldTranslation;
m_WorldTransform.Scale = m_WorldScaling;
m_InverseWorldTransform = m_WorldTransform.Transpose();
m_InverseWorldTransform.m30 = m_InverseWorldTransform.m31 = m_InverseWorldTransform.m32 = 0.0f;
m_InverseWorldTransform.Translation = m_InverseWorldTransform * (-m_WorldTranslation);
m_WorldUpdate = false;
return true;
}
return false;
}
This code was ported from my old C++ engine, which was tested in some scenarios.
There is no doubt that your code is tested too, but how it can be that the objects have
such confusing behaviour?
Something other I encountered:
BrumeObject.cs says on line 819:
- Code: Select all
public void AddChild(BrumeObject child)
{
this.brume.RemoveObject(child);
Childs.Add(child);
child.Parent = this;
//E3D_E3D_STATS_INC(nbrObjects)
}
Shouldn't it be:
- Code: Select all
public void AddChild(BrumeObject child)
{
if( child == null )
return;
if( child.Parent != null)
child.Parent.RemoveObject(child);
Childs.Add(child);
child.Parent = this;
//E3D_E3D_STATS_INC(nbrObjects)
}
I had to remove the object from the parent every time I changed the location in the scene graph.
This is the default and normal behaviour (the fact that translation changes may be a rotation)
You mean rotation is a translation?
This may be really usefull if you want to scale an entire level in the scene graph.
That's the meaning of a scene graph.
You can disable this using the BrumeObject.ComputeParentTransformation property. If true the BrumeObject.WorldTranformation will be equal to BrumeObject.LocalTranformation
Disableing the scenegraph is not really an option for me. only using own scale would be better.
Maybe you could create properties for UseParentRotation, UseParentScale and UseParentTranslation?
XSize, YSize and ZSize must be used with BrumeObject.HasGlobalSize = false and are used for non uniform scale.
I suggest a change of one of these properties sets HasGlobalSize = true automaticly
or a better solution would be Size sets all of these to the same value and HasGlobalSize is always true.