+ IScriptable can now be disabled instancewise + IShowItem can disable rendering. ~ SM.Base.Mesh has now ILineMesh - IGenericWindow.AspectRatioReverse
19 lines
No EOL
387 B
C#
19 lines
No EOL
387 B
C#
using SM.Base;
|
|
using SM.Base.Windows;
|
|
|
|
namespace SM.Base.Scene
|
|
{
|
|
/// <summary>
|
|
/// Defines a object as script.
|
|
/// </summary>
|
|
public interface IScriptable
|
|
{
|
|
bool Active { get; set; }
|
|
bool UpdateActive { get; set; }
|
|
|
|
/// <summary>
|
|
/// Updates the object.
|
|
/// </summary>
|
|
void Update(UpdateContext context);
|
|
}
|
|
} |