make vars public
This commit is contained in:
@@ -27,12 +27,12 @@ namespace FlaxEditor.Content
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether this node can be deleted.
|
/// Whether this node can be deleted.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected virtual bool CanDelete => true;
|
public virtual bool CanDelete => true;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Whether this node can be duplicated.
|
/// Whether this node can be duplicated.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected virtual bool CanDuplicate => true;
|
public virtual bool CanDuplicate => true;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the content folder item.
|
/// Gets the content folder item.
|
||||||
|
|||||||
@@ -13,10 +13,10 @@ namespace FlaxEditor.Content
|
|||||||
private FileSystemWatcher _watcher;
|
private FileSystemWatcher _watcher;
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override bool CanDelete => false;
|
public override bool CanDelete => false;
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override bool CanDuplicate => false;
|
public override bool CanDuplicate => false;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initializes a new instance of the <see cref="MainContentTreeNode"/> class.
|
/// Initializes a new instance of the <see cref="MainContentTreeNode"/> class.
|
||||||
|
|||||||
Reference in New Issue
Block a user