Finished docking
This commit is contained in:
@@ -1,45 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace Awperative;
|
|
||||||
|
|
||||||
public sealed partial class Body
|
|
||||||
{
|
|
||||||
public Component GetComponent<Generic>() where Generic : Component => GetComponents<Generic>()[0];
|
|
||||||
public Component[] GetComponents<Generic>() where Generic : Component {
|
|
||||||
|
|
||||||
List<Component> returnValue = [];
|
|
||||||
foreach (Component component in _components)
|
|
||||||
if (component is Generic) returnValue.Add(component);
|
|
||||||
|
|
||||||
if(returnValue.Count == 0) { Debug.LogWarning("Scene has no components of this type"); return null; }
|
|
||||||
|
|
||||||
return returnValue.ToArray();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Component FindSingleton<Generic>() where Generic : Component {
|
|
||||||
foreach (Component component in _components)
|
|
||||||
if (component.GetType() == typeof(Generic))
|
|
||||||
if(component.EnforceSingleton)
|
|
||||||
return component;
|
|
||||||
else {
|
|
||||||
Debug.LogError("Component is not a singleton");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
Debug.LogError("Scene does not contain a component of this type");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool SingletonExists<Generic>() where Generic : Component
|
|
||||||
{
|
|
||||||
foreach (Component __component in _components)
|
|
||||||
if (__component.GetType() == typeof(Generic))
|
|
||||||
if (__component.EnforceSingleton)
|
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Microsoft.Xna.Framework;
|
||||||
|
|
||||||
|
|
||||||
namespace Awperative;
|
namespace Awperative;
|
||||||
|
|
||||||
public sealed partial class Body
|
public sealed partial class Body : DockerEntity
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
@@ -80,4 +81,16 @@ public sealed partial class Body
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
internal void Unload() { foreach (Component component in _components) component.Unload(); }
|
||||||
|
internal void Load() { foreach (Component component in _components) { component.Load(); } }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
internal void Update(GameTime __gameTime) { foreach (Component component in _components) { component.Update(__gameTime); } }
|
||||||
|
internal void Draw(GameTime __gameTime) { foreach (Component component in _components) { component.Draw(__gameTime); } }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
internal void Destroy() { foreach(Component component in _components) component.Destroy(); }
|
||||||
|
internal void Create() { foreach (Component component in _components) component.Create(); }
|
||||||
}
|
}
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
using System.Linq;
|
|
||||||
using Microsoft.Xna.Framework;
|
|
||||||
|
|
||||||
|
|
||||||
namespace Awperative;
|
|
||||||
|
|
||||||
|
|
||||||
public sealed partial class Body
|
|
||||||
{
|
|
||||||
internal void Unload() { foreach (Component component in _components) component.Unload(); }
|
|
||||||
internal void Load() { foreach (Component component in _components) { component.Load(); } }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
internal void Update(GameTime __gameTime) { foreach (Component component in _components) { component.Update(__gameTime); } }
|
|
||||||
internal void Draw(GameTime __gameTime) { foreach (Component component in _components) { component.Draw(__gameTime); } }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
internal void Destroy() { foreach(Component component in _components) component.Destroy(); }
|
|
||||||
internal void Create() { foreach (Component component in _components) component.Create(); }
|
|
||||||
}
|
|
||||||
@@ -2,13 +2,11 @@ using System;
|
|||||||
|
|
||||||
namespace Awperative;
|
namespace Awperative;
|
||||||
|
|
||||||
public sealed partial class Body
|
public abstract partial class DockerEntity
|
||||||
{
|
{
|
||||||
|
|
||||||
public Component AddComponent<Generic>() where Generic : Component => AddComponent<Generic>([]);
|
public Component AddComponent<Generic>() where Generic : Component => AddComponent<Generic>([]);
|
||||||
public Component AddComponent<Generic>(object[] __args) where Generic : Component {
|
public Component AddComponent<Generic>(object[] __args) where Generic : Component {
|
||||||
|
|
||||||
if (SingletonExists<Generic>()) { Debug.LogError("Cannot add component when singleton exists"); return null; }
|
|
||||||
if(typeof(Generic).GetConstructor((Type[]) __args) == null) { Debug.LogError("Component does not contain a valid constructor"); return null; };
|
if(typeof(Generic).GetConstructor((Type[]) __args) == null) { Debug.LogError("Component does not contain a valid constructor"); return null; };
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -8,14 +8,9 @@ namespace Awperative;
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base class for all Awperative entities, manages components as a requirement because that is the job of all entities.
|
/// Base class for all Awperative entities, manages components as a requirement because that is the job of all entities.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
internal abstract partial class DockerEntity
|
public abstract partial class DockerEntity
|
||||||
{
|
{
|
||||||
public Scene scene;
|
public Scene Scene;
|
||||||
|
|
||||||
public List<Component> Components => _components.ToList();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
internal HashSet<Component> _components;
|
internal HashSet<Component> _components;
|
||||||
}
|
}
|
||||||
19
Awperative/Kernel/Entities/DockerEntity/Location.cs
Normal file
19
Awperative/Kernel/Entities/DockerEntity/Location.cs
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace Awperative;
|
||||||
|
|
||||||
|
public abstract partial class DockerEntity
|
||||||
|
{
|
||||||
|
public Component GetComponent<Generic>() where Generic : Component => GetComponents<Generic>()[0];
|
||||||
|
public Component[] GetComponents<Generic>() where Generic : Component {
|
||||||
|
|
||||||
|
List<Component> returnValue = [];
|
||||||
|
foreach (Component component in _components)
|
||||||
|
if (component is Generic) returnValue.Add(component);
|
||||||
|
|
||||||
|
if(returnValue.Count == 0) { Debug.LogWarning("Scene has no components of this type"); return null; }
|
||||||
|
|
||||||
|
return returnValue.ToArray();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
namespace Awperative;
|
namespace Awperative;
|
||||||
|
|
||||||
public sealed partial class Body
|
public abstract partial class DockerEntity
|
||||||
{
|
{
|
||||||
public void RemoveComponent(Component __component) {
|
public void RemoveComponent(Component __component) {
|
||||||
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
namespace Awperative;
|
|
||||||
|
|
||||||
|
|
||||||
internal abstract partial class DockerEntity
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,134 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
|
|
||||||
namespace Awperative;
|
|
||||||
|
|
||||||
|
|
||||||
public sealed partial class Scene : DockerEntity
|
|
||||||
{
|
|
||||||
|
|
||||||
public List<Behavior> behaviors { get; private set; } = [];
|
|
||||||
|
|
||||||
//todo: use extern keyword to make transform ambiguous to support potential 3D games
|
|
||||||
|
|
||||||
|
|
||||||
public Generic AddBehavior<Generic>(object[] args) where Generic : Behavior {
|
|
||||||
|
|
||||||
if (SingletonExists<Generic>())
|
|
||||||
throw new Exception("Cannot add behavior when singleton exists!");
|
|
||||||
|
|
||||||
Generic behavior = (Generic) Activator.CreateInstance(typeof(Generic), args);
|
|
||||||
|
|
||||||
if(behavior == null)
|
|
||||||
throw new Exception("Failed to create behavior!");
|
|
||||||
|
|
||||||
behaviors.Add(behavior);
|
|
||||||
behavior.Initiate(this);
|
|
||||||
|
|
||||||
BehaviorCreatedEvent?.Invoke(this, new BehaviorCreateEvent(behavior, this));
|
|
||||||
|
|
||||||
return behavior;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Generic AddBehavior<Generic>() where Generic : Behavior {
|
|
||||||
|
|
||||||
if (SingletonExists<Generic>())
|
|
||||||
throw new Exception("Cannot add behavior when singleton exists!");
|
|
||||||
|
|
||||||
Generic behavior = (Generic) Activator.CreateInstance(typeof(Generic));
|
|
||||||
|
|
||||||
if(behavior == null)
|
|
||||||
throw new Exception("Failed to create behavior!");
|
|
||||||
|
|
||||||
behaviors.Add(behavior);
|
|
||||||
behavior.Initiate(this);
|
|
||||||
|
|
||||||
BehaviorCreatedEvent?.Invoke(this, new BehaviorCreateEvent(behavior, this));
|
|
||||||
|
|
||||||
return behavior;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Generic[] GetBehaviors<Generic>() where Generic : Behavior {
|
|
||||||
|
|
||||||
List<Behavior> foundBehaviors = behaviors.FindAll(x => x.GetType() == typeof(Generic));
|
|
||||||
|
|
||||||
if(foundBehaviors.Count == 0)
|
|
||||||
throw new Exception("Scene has no behaviors of that type!");
|
|
||||||
|
|
||||||
return foundBehaviors.ToArray() as Generic[];
|
|
||||||
}
|
|
||||||
|
|
||||||
public Generic GetBehavior<Generic>() where Generic : Behavior {
|
|
||||||
|
|
||||||
Behavior foundBehavior = behaviors.Find(x => x.GetType() == typeof(Generic));
|
|
||||||
|
|
||||||
if(foundBehavior == null)
|
|
||||||
throw new Exception("Scene has no behaviors of that type!");
|
|
||||||
|
|
||||||
return foundBehavior as Generic;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RemoveBehaviors<Generic>() where Generic : Behavior {
|
|
||||||
|
|
||||||
Behavior[] foundBehaviors = GetBehaviors<Generic>();
|
|
||||||
|
|
||||||
if(foundBehaviors.Length == 0)
|
|
||||||
throw new Exception("Scene has no behaviors of that type!");
|
|
||||||
|
|
||||||
foreach (Behavior behavior in foundBehaviors) {
|
|
||||||
behavior.End();
|
|
||||||
behaviors.Remove(behavior);
|
|
||||||
BehaviorDestroyedEvent?.Invoke(this, new BehaviorDestroyEvent(behavior, this));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RemoveBehavior<Generic>() where Generic : Behavior {
|
|
||||||
|
|
||||||
Behavior foundBehavior = GetBehavior<Generic>();
|
|
||||||
|
|
||||||
if(foundBehavior == null)
|
|
||||||
throw new Exception("Scene has no behaviors of that type!");
|
|
||||||
|
|
||||||
foundBehavior.End();
|
|
||||||
behaviors.Remove(foundBehavior);
|
|
||||||
BehaviorDestroyedEvent?.Invoke(this ,new BehaviorDestroyEvent(foundBehavior, this));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RemoveBehavior(Behavior __behavior) {
|
|
||||||
__behavior.End();
|
|
||||||
behaviors.Remove(__behavior);
|
|
||||||
BehaviorDestroyedEvent?.Invoke(this, new BehaviorDestroyEvent(__behavior, this));
|
|
||||||
}
|
|
||||||
|
|
||||||
public Generic FindSingleton<Generic>() where Generic : Behavior
|
|
||||||
{
|
|
||||||
foreach (Behavior __behavior in behaviors)
|
|
||||||
if (__behavior.GetType() == typeof(Generic))
|
|
||||||
if(__behavior.EnforceSingleton)
|
|
||||||
return (Generic) __behavior;
|
|
||||||
else
|
|
||||||
throw new Exception("Behavior is not a singleton");
|
|
||||||
|
|
||||||
throw new Exception("Behavior not found");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public bool SingletonExists<Generic>() where Generic : Behavior
|
|
||||||
{
|
|
||||||
|
|
||||||
foreach (Behavior __behavior in behaviors)
|
|
||||||
if (__behavior.GetType() == typeof(Generic))
|
|
||||||
if (__behavior.EnforceSingleton)
|
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RecompileBehaviorOrder() {
|
|
||||||
behaviors.Sort((a, b) => a.Priority.CompareTo(b.Priority));
|
|
||||||
behaviors.Reverse();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -7,8 +7,6 @@ namespace Awperative;
|
|||||||
|
|
||||||
public sealed partial class Scene : DockerEntity
|
public sealed partial class Scene : DockerEntity
|
||||||
{
|
{
|
||||||
public List<Body> bodies { get; private set; } = [];
|
|
||||||
|
|
||||||
public Body AddBody(Transform __transform) {
|
public Body AddBody(Transform __transform) {
|
||||||
Body body = new Body(this, __transform);
|
Body body = new Body(this, __transform);
|
||||||
bodies.Add(body);
|
bodies.Add(body);
|
||||||
|
|||||||
@@ -1,10 +1,35 @@
|
|||||||
|
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using Microsoft.Xna.Framework;
|
||||||
|
|
||||||
namespace Awperative;
|
namespace Awperative;
|
||||||
|
|
||||||
public sealed partial class Scene : DockerEntity
|
public sealed partial class Scene : DockerEntity
|
||||||
{
|
{
|
||||||
|
|
||||||
|
public List<Body> bodies { get; private set; } = [];
|
||||||
|
|
||||||
|
public void Unload() {
|
||||||
|
foreach (Component component in _components) component.Unload();
|
||||||
|
foreach (Body body in bodies.ToList()) body.Unload();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Load() {
|
||||||
|
foreach (Component component in _components) component.Load();
|
||||||
|
foreach (Body body in bodies.ToList()) { body.Load(); }
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Update(GameTime __gameTime) {
|
||||||
|
foreach (Component component in _components) component.Update(__gameTime);
|
||||||
|
foreach (Body body in bodies.ToList()) { body.Update(__gameTime); }
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Draw(GameTime __gameTime) {
|
||||||
|
foreach (Component component in _components) component.Draw(__gameTime);
|
||||||
|
foreach (Body body in bodies.ToList()) { body.Draw(__gameTime); }
|
||||||
|
}
|
||||||
|
|
||||||
//todo: add scene.destroy in v5
|
//todo: add scene.destroy in v5
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,9 +6,6 @@ namespace Awperative;
|
|||||||
|
|
||||||
public sealed partial class Scene : DockerEntity
|
public sealed partial class Scene : DockerEntity
|
||||||
{
|
{
|
||||||
public event EventHandler<BehaviorCreateEvent> BehaviorCreatedEvent;
|
|
||||||
public event EventHandler<BehaviorDestroyEvent> BehaviorDestroyedEvent;
|
|
||||||
|
|
||||||
|
|
||||||
public event EventHandler<BodyCreateEvent> BodyCreatedEvent;
|
public event EventHandler<BodyCreateEvent> BodyCreatedEvent;
|
||||||
public event EventHandler<BodyDestroyEvent> BodyDestroyedEvent;
|
public event EventHandler<BodyDestroyEvent> BodyDestroyedEvent;
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
using System.Linq;
|
|
||||||
using Microsoft.Xna.Framework;
|
|
||||||
|
|
||||||
|
|
||||||
namespace Awperative;
|
|
||||||
|
|
||||||
public sealed partial class Scene : DockerEntity
|
|
||||||
{
|
|
||||||
|
|
||||||
public void Unload() {
|
|
||||||
foreach (Behavior behavior in behaviors.ToList()) behavior.Unload();
|
|
||||||
foreach (Body body in bodies.ToList()) body.Unload();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Load() {
|
|
||||||
foreach (Behavior behavior in behaviors.ToList()) { behavior.Load(); }
|
|
||||||
foreach (Body body in bodies.ToList()) { body.Load(); }
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Update(GameTime __gameTime) {
|
|
||||||
foreach (Behavior behavior in behaviors.ToList()) { behavior.Update(__gameTime); }
|
|
||||||
foreach (Body body in bodies.ToList()) { body.Update(__gameTime); }
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Draw(GameTime __gameTime) {
|
|
||||||
foreach (Behavior behavior in behaviors.ToList()) { behavior.Draw(__gameTime); }
|
|
||||||
foreach (Body body in bodies.ToList()) { body.Draw(__gameTime); }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
namespace Awperative;
|
|
||||||
|
|
||||||
public sealed record BehaviorCreateEvent
|
|
||||||
{
|
|
||||||
public readonly Behavior behavior;
|
|
||||||
public readonly Scene scene;
|
|
||||||
|
|
||||||
internal BehaviorCreateEvent() {}
|
|
||||||
|
|
||||||
internal BehaviorCreateEvent(Behavior __behavior, Scene __scene)
|
|
||||||
{
|
|
||||||
behavior = __behavior;
|
|
||||||
scene = __scene;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
namespace Awperative;
|
|
||||||
|
|
||||||
public sealed record BehaviorDestroyEvent
|
|
||||||
{
|
|
||||||
public readonly Behavior behavior;
|
|
||||||
public readonly Scene scene;
|
|
||||||
|
|
||||||
internal BehaviorDestroyEvent() {}
|
|
||||||
|
|
||||||
internal BehaviorDestroyEvent(Behavior __behavior, Scene __scene)
|
|
||||||
{
|
|
||||||
behavior = __behavior;
|
|
||||||
scene = __scene;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,4 +4,16 @@ namespace Awperative;
|
|||||||
public class BodyComponent : Component
|
public class BodyComponent : Component
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
|
public Body Body;
|
||||||
|
|
||||||
|
internal override void Initiate(DockerEntity __docker) {
|
||||||
|
Docker = __docker;
|
||||||
|
|
||||||
|
Body = (Body)__docker;
|
||||||
|
Create();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Transform Transform => Body.transform;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -7,23 +7,27 @@ namespace Awperative;
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The lowest level scripting class in Awperative. Components are scene level and provide access to all scene level methods, can be applied to any docker and inherited
|
/// The lowest level scripting class in Awperative. Components are scene level and provide access to all scene level methods, can be applied to any docker and inherited
|
||||||
|
/// Sadly component does not have excessive access to specific types.
|
||||||
|
/// Anything that inherits Component is built to work in any DockerEntity, which leads to generic
|
||||||
|
/// Assumptions. If you want to make a body specific or scene specific component both classes are available.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class Component
|
public abstract partial class Component
|
||||||
{
|
{
|
||||||
internal DockerEntity Parent;
|
public Scene Scene { get; set; }
|
||||||
|
internal DockerEntity Docker;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
internal void Initiate(DockerEntity __parent) {
|
internal virtual void Initiate(DockerEntity __docker) {
|
||||||
Parent = __parent;
|
Docker = __docker;
|
||||||
Create();
|
Create();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
internal void End() {
|
internal virtual void End() {
|
||||||
Destroy();
|
Destroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
26
Awperative/Kernel/Scripting/Component/Methods.cs
Normal file
26
Awperative/Kernel/Scripting/Component/Methods.cs
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
namespace Awperative;
|
||||||
|
|
||||||
|
public abstract partial class Component
|
||||||
|
{
|
||||||
|
|
||||||
|
protected Body AddBody() => Scene.AddBody();
|
||||||
|
protected Body AddBody(Transform __transform) => Scene.AddBody(__transform);
|
||||||
|
|
||||||
|
protected Body GetBody(string __tag) => Scene.GetBody(__tag);
|
||||||
|
protected Body[] GetBodies(string __tag) => Scene.GetBodies(__tag);
|
||||||
|
|
||||||
|
protected void DestroyBody(Body __body) => Scene.DestroyBody(__body);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public Component AddComponent<Generic>() where Generic : Component => Docker.AddComponent<Generic>();
|
||||||
|
public Component AddComponent<Generic>(object[] __args) where Generic : Component => Docker.AddComponent<Generic>(__args);
|
||||||
|
|
||||||
|
public Component GetComponent<Generic>() where Generic : Component => Docker.GetComponent<Generic>();
|
||||||
|
public Component[] GetComponents<Generic>() where Generic : Component => Docker.GetComponents<Generic>();
|
||||||
|
|
||||||
|
public void RemoveComponent<Generic>() where Generic : Component => Docker.RemoveComponent<Generic>();
|
||||||
|
|
||||||
|
}
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
using Microsoft.Xna.Framework;
|
|
||||||
|
|
||||||
|
|
||||||
namespace Awperative;
|
|
||||||
|
|
||||||
public abstract class Component
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public Scene scene;
|
|
||||||
public Body body;
|
|
||||||
|
|
||||||
public bool Enabled = false;
|
|
||||||
public bool EnforceSingleton = false;
|
|
||||||
|
|
||||||
//0 = default highest priority called first, lowest priority called last
|
|
||||||
//todo: add optional parameter for priority at creation
|
|
||||||
public int Priority {
|
|
||||||
get => _priority;
|
|
||||||
set { _priority = value; }
|
|
||||||
} private int _priority = 0;
|
|
||||||
|
|
||||||
|
|
||||||
protected Transform transform => body.transform;
|
|
||||||
|
|
||||||
protected Body AddBody() => scene.AddBody();
|
|
||||||
protected Body AddBody(Transform __transform) => scene.AddBody(__transform);
|
|
||||||
|
|
||||||
protected Body GetBody(string __tag) => scene.GetBody(__tag);
|
|
||||||
protected Body[] GetBodies(string __tag) => scene.GetBodies(__tag);
|
|
||||||
|
|
||||||
protected void DestroyBody(Body __body) => scene.DestroyBody(__body);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public Generic AddBehavior<Generic>() where Generic : Behavior => scene.AddBehavior<Generic>();
|
|
||||||
public Generic AddBehavior<Generic>(object[] __args) where Generic : Behavior => scene.AddBehavior<Generic>(__args);
|
|
||||||
|
|
||||||
public Generic GetBehavior<Generic>() where Generic : Behavior => scene.GetBehavior<Generic>();
|
|
||||||
public Generic[] GetBehaviors<Generic>() where Generic : Behavior => scene.GetBehaviors<Generic>();
|
|
||||||
|
|
||||||
|
|
||||||
public void RemoveBehavior<Generic>() where Generic : Behavior => scene.RemoveBehavior<Generic>();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public Component AddComponent<Generic>() where Generic : Component => body.AddComponent<Generic>();
|
|
||||||
public Component AddComponent<Generic>(object[] __args) where Generic : Component => body.AddComponent<Generic>(__args);
|
|
||||||
|
|
||||||
public Component GetComponent<Generic>() where Generic : Component => body.GetComponent<Generic>();
|
|
||||||
public Component[] GetComponents<Generic>() where Generic : Component => body.GetComponents<Generic>();
|
|
||||||
|
|
||||||
public void RemoveComponent<Generic>() where Generic : Component => body.RemoveComponent<Generic>();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//creation logic
|
|
||||||
internal void Initiate(Body __body)
|
|
||||||
{
|
|
||||||
body = __body;
|
|
||||||
scene = __body.Scene;
|
|
||||||
Create();
|
|
||||||
}
|
|
||||||
|
|
||||||
internal void End()
|
|
||||||
{
|
|
||||||
Destroy();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
namespace Awperative;
|
|
||||||
|
|
||||||
|
|
||||||
public class hello : BodyComponent
|
|
||||||
{
|
|
||||||
public void Start() {
|
|
||||||
|
|
||||||
this.ExtensionTest();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,20 +1,20 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"/home/avery/Programming/Awperative/Awperative/Awperative.csproj": {}
|
"/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"/home/avery/Programming/Awperative/Awperative/Awperative.csproj": {
|
"/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "/home/avery/Programming/Awperative/Awperative/Awperative.csproj",
|
"projectUniqueName": "/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj",
|
||||||
"projectName": "Awperative",
|
"projectName": "Awperative",
|
||||||
"projectPath": "/home/avery/Programming/Awperative/Awperative/Awperative.csproj",
|
"projectPath": "/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj",
|
||||||
"packagesPath": "/home/avery/.nuget/packages/",
|
"packagesPath": "/Users/averynorris/.nuget/packages/",
|
||||||
"outputPath": "/home/avery/Programming/Awperative/Awperative/obj/",
|
"outputPath": "/Users/averynorris/RiderProjects/Awperative/Awperative/obj/",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"/home/avery/.nuget/NuGet/NuGet.Config"
|
"/Users/averynorris/.nuget/NuGet/NuGet.Config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
"net8.0"
|
"net8.0"
|
||||||
@@ -32,7 +32,13 @@
|
|||||||
"warnAsError": [
|
"warnAsError": [
|
||||||
"NU1605"
|
"NU1605"
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.300"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
@@ -55,12 +61,22 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
|
"downloadDependencies": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App.Ref",
|
||||||
|
"version": "[8.0.20, 8.0.20]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App.Ref",
|
||||||
|
"version": "[8.0.20, 8.0.20]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"frameworkReferences": {
|
"frameworkReferences": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.123/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/9.0.305/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,12 +4,12 @@
|
|||||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/avery/.nuget/packages/</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/averynorris/.nuget/packages/</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/avery/.nuget/packages/</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/averynorris/.nuget/packages/</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="/home/avery/.nuget/packages/" />
|
<SourceRoot Include="/Users/averynorris/.nuget/packages/" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Awperative")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Awperative")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+a78b5aef96c286d7f54b11963ffa6c3090398b85")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+67fca0c271ce945c612999f54223bca0718349dc")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Awperative")]
|
[assembly: System.Reflection.AssemblyProductAttribute("Awperative")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Awperative")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Awperative")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
5ebc44aa1d8b334bde6fb25c7d47f03612c55ffac27d8f46c1f104b7334054b4
|
952122ca1789a87944cd35cf39a919e8125756f5a5b45023331b2add882658ea
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ build_property.PlatformNeutralAssembly =
|
|||||||
build_property.EnforceExtendedAnalyzerRules =
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
build_property.RootNamespace = Awperative
|
build_property.RootNamespace = Awperative
|
||||||
build_property.ProjectDir = /home/avery/Programming/Awperative/Awperative/
|
build_property.ProjectDir = /Users/averynorris/RiderProjects/Awperative/Awperative/
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||||
|
build_property.EnableCodeStyleSeverity =
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
0400c56c4a1b68e1972a170888bce3d3aee36f4c67a26871cb8491bbb0e074af
|
95848c046b9b32c14cf563754dd778d9bd1782510c1ef05d43cd25a8dc421370
|
||||||
|
|||||||
@@ -23,3 +23,16 @@
|
|||||||
/home/avery/Programming/Awperative/Awperative/obj/Debug/net8.0/refint/Awperative.dll
|
/home/avery/Programming/Awperative/Awperative/obj/Debug/net8.0/refint/Awperative.dll
|
||||||
/home/avery/Programming/Awperative/Awperative/obj/Debug/net8.0/Awperative.pdb
|
/home/avery/Programming/Awperative/Awperative/obj/Debug/net8.0/Awperative.pdb
|
||||||
/home/avery/Programming/Awperative/Awperative/obj/Debug/net8.0/ref/Awperative.dll
|
/home/avery/Programming/Awperative/Awperative/obj/Debug/net8.0/ref/Awperative.dll
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/bin/Debug/net8.0/Awperative.deps.json
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/bin/Debug/net8.0/Awperative.dll
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/bin/Debug/net8.0/Awperative.pdb
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/Awperative.csproj.AssemblyReference.cache
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/Awperative.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/Awperative.AssemblyInfoInputs.cache
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/Awperative.AssemblyInfo.cs
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/Awperative.csproj.CoreCompileInputs.cache
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/Awperative.sourcelink.json
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/Awperative.dll
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/refint/Awperative.dll
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/Awperative.pdb
|
||||||
|
/Users/averynorris/RiderProjects/Awperative/Awperative/obj/Debug/net8.0/ref/Awperative.dll
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
{"documents":{"/home/avery/Programming/Awperative/*":"https://raw.githubusercontent.com/BlazeyDotOrg/Awperative/a78b5aef96c286d7f54b11963ffa6c3090398b85/*"}}
|
{"documents":{"/Users/averynorris/RiderProjects/Awperative/*":"https://raw.githubusercontent.com/BlazeyDotOrg/Awperative/67fca0c271ce945c612999f54223bca0718349dc/*"}}
|
||||||
Binary file not shown.
Binary file not shown.
@@ -273,19 +273,19 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"packageFolders": {
|
||||||
"/home/avery/.nuget/packages/": {}
|
"/Users/averynorris/.nuget/packages/": {}
|
||||||
},
|
},
|
||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "/home/avery/Programming/Awperative/Awperative/Awperative.csproj",
|
"projectUniqueName": "/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj",
|
||||||
"projectName": "Awperative",
|
"projectName": "Awperative",
|
||||||
"projectPath": "/home/avery/Programming/Awperative/Awperative/Awperative.csproj",
|
"projectPath": "/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj",
|
||||||
"packagesPath": "/home/avery/.nuget/packages/",
|
"packagesPath": "/Users/averynorris/.nuget/packages/",
|
||||||
"outputPath": "/home/avery/Programming/Awperative/Awperative/obj/",
|
"outputPath": "/Users/averynorris/RiderProjects/Awperative/Awperative/obj/",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"/home/avery/.nuget/NuGet/NuGet.Config"
|
"/Users/averynorris/.nuget/NuGet/NuGet.Config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
"net8.0"
|
"net8.0"
|
||||||
@@ -303,7 +303,13 @@
|
|||||||
"warnAsError": [
|
"warnAsError": [
|
||||||
"NU1605"
|
"NU1605"
|
||||||
]
|
]
|
||||||
}
|
},
|
||||||
|
"restoreAuditProperties": {
|
||||||
|
"enableAudit": "true",
|
||||||
|
"auditLevel": "low",
|
||||||
|
"auditMode": "direct"
|
||||||
|
},
|
||||||
|
"SdkAnalysisLevel": "9.0.300"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net8.0": {
|
"net8.0": {
|
||||||
@@ -326,12 +332,22 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
|
"downloadDependencies": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App.Ref",
|
||||||
|
"version": "[8.0.20, 8.0.20]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App.Ref",
|
||||||
|
"version": "[8.0.20, 8.0.20]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"frameworkReferences": {
|
"frameworkReferences": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.123/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/9.0.305/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,17 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "oHHZKOBBLTE=",
|
"dgSpecHash": "rY6Za5NlkX4=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/home/avery/Programming/Awperative/Awperative/Awperative.csproj",
|
"projectFilePath": "/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"/home/avery/.nuget/packages/monogame.framework.desktopgl/3.8.4.1/monogame.framework.desktopgl.3.8.4.1.nupkg.sha512",
|
"/Users/averynorris/.nuget/packages/monogame.framework.desktopgl/3.8.4.1/monogame.framework.desktopgl.3.8.4.1.nupkg.sha512",
|
||||||
"/home/avery/.nuget/packages/monogame.library.openal/1.24.3.2/monogame.library.openal.1.24.3.2.nupkg.sha512",
|
"/Users/averynorris/.nuget/packages/monogame.library.openal/1.24.3.2/monogame.library.openal.1.24.3.2.nupkg.sha512",
|
||||||
"/home/avery/.nuget/packages/monogame.library.sdl/2.32.2.1/monogame.library.sdl.2.32.2.1.nupkg.sha512",
|
"/Users/averynorris/.nuget/packages/monogame.library.sdl/2.32.2.1/monogame.library.sdl.2.32.2.1.nupkg.sha512",
|
||||||
"/home/avery/.nuget/packages/nvorbis/0.10.4/nvorbis.0.10.4.nupkg.sha512",
|
"/Users/averynorris/.nuget/packages/nvorbis/0.10.4/nvorbis.0.10.4.nupkg.sha512",
|
||||||
"/home/avery/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
|
"/Users/averynorris/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
|
||||||
"/home/avery/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512"
|
"/Users/averynorris/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512",
|
||||||
|
"/Users/averynorris/.nuget/packages/microsoft.netcore.app.ref/8.0.20/microsoft.netcore.app.ref.8.0.20.nupkg.sha512",
|
||||||
|
"/Users/averynorris/.nuget/packages/microsoft.aspnetcore.app.ref/8.0.20/microsoft.aspnetcore.app.ref.8.0.20.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
||||||
@@ -1 +1 @@
|
|||||||
"restore":{"projectUniqueName":"/home/avery/Programming/Awperative/Awperative/Awperative.csproj","projectName":"Awperative","projectPath":"/home/avery/Programming/Awperative/Awperative/Awperative.csproj","outputPath":"/home/avery/Programming/Awperative/Awperative/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"MonoGame.Framework.DesktopGL":{"suppressParent":"All","target":"Package","version":"[3.8.*, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/lib/dotnet/sdk/8.0.123/PortableRuntimeIdentifierGraph.json"}}
|
"restore":{"projectUniqueName":"/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj","projectName":"Awperative","projectPath":"/Users/averynorris/RiderProjects/Awperative/Awperative/Awperative.csproj","outputPath":"/Users/averynorris/RiderProjects/Awperative/Awperative/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"MonoGame.Framework.DesktopGL":{"suppressParent":"All","target":"Package","version":"[3.8.*, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"Microsoft.AspNetCore.App.Ref","version":"[8.0.20, 8.0.20]"},{"name":"Microsoft.NETCore.App.Ref","version":"[8.0.20, 8.0.20]"}],"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/9.0.305/PortableRuntimeIdentifierGraph.json"}}
|
||||||
@@ -1 +1 @@
|
|||||||
17705828079759943
|
17705966520825743
|
||||||
@@ -1 +1 @@
|
|||||||
17705828120140388
|
17705973335994258
|
||||||
Reference in New Issue
Block a user