2025-11-25 08:19:33 -05:00
|
|
|
|
/// ---------------------------------------------
|
|
|
|
|
|
/// Behavior Designer
|
|
|
|
|
|
/// Copyright (c) Opsive. All Rights Reserved.
|
|
|
|
|
|
/// https://www.opsive.com
|
|
|
|
|
|
/// ---------------------------------------------
|
|
|
|
|
|
namespace Opsive.BehaviorDesigner.Editor.Managers
|
|
|
|
|
|
{
|
|
|
|
|
|
using Opsive.Shared.Editor.Managers;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Draws a list of all of the available add-ons.
|
|
|
|
|
|
/// </summary>
|
2026-06-27 12:52:03 -04:00
|
|
|
|
[OrderedEditorItem("Add-Ons", 13)]
|
2025-11-25 08:19:33 -05:00
|
|
|
|
public class AddOnsManager : Opsive.Shared.Editor.Managers.AddOnsManager
|
|
|
|
|
|
{
|
|
|
|
|
|
protected override string AddOnsURL => "https://opsive.com/asset/BehaviorDesigner/AddOnsList.txt";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|