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