Remove instant cryobed insertion (#34619)
* added optional delay to DragInsertContainerComponent * comments * Change EntryDelay on DragInsertContainerComponent to use TimeSpan + cleanup * changed drag insert container comp to match naming conventions
This commit is contained in:
@@ -17,4 +17,16 @@ public sealed partial class DragInsertContainerComponent : Component
|
||||
/// </summary>
|
||||
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool UseVerbs = true;
|
||||
|
||||
/// <summary>
|
||||
/// The delay in seconds before a drag will be completed.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public TimeSpan EntryDelay = TimeSpan.Zero;
|
||||
|
||||
/// <summary>
|
||||
/// If entry delay isn't zero, this sets whether an entity dragging itself into the container should be delayed.
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public bool DelaySelfEntry = false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user