smrendererv3/SMCode/SM.Base/Scene/ICollectionItem.cs
Michel Fedde 35c433fa85 1.0.10
+ Added property "CalculatedWorldScale", what always updates the world scale if required.

~ Changed how items can be inserted to a item collection.
~ AddObject(), AddScript(), RemoveObject(), RemoveScript() are now obsolte.
~ Fixed a issue, where the background was using the default mesh, what caused some visual errors if changed.
2021-04-19 20:49:46 +02:00

10 lines
No EOL
167 B
C#

namespace SM.Base.Scene
{
/// <summary>
/// Dummy interface for adding items.
/// </summary>
public interface ICollectionItem
{
}
}