With the new version, there’s comparisons among Aegis and Fusion which you can find here
Haven’t added comparison with react yet, and I did add more tutorials to the docs so hopefully that helps! (sorry for the inconvenience)
With the new version, there’s comparisons among Aegis and Fusion which you can find here
Haven’t added comparison with react yet, and I did add more tutorials to the docs so hopefully that helps! (sorry for the inconvenience)
0 voters
This basically means that we’ll be removing the [Children]
key and opting for a more react-styled syntax.
Before:
Aegis.new("Frame", {
[Children = Aegis.new("Frame", {
Name = "anotherFrame"
})
})
After:
Aegis.new("Frame", {
Name = "someFrame"
}, {
Aegis.new("Frame", {
Name = "anotherFrame"
})
})
A benchmark with 2 descendant instances:
Current new
is faster
A benchmark with 1 descendant instance:
Current new
is still faster
What we need is more people who specialize in the impossible. - Theodore Roethke
compute
constructor.childrenTable
parameter for new
constructorSpring:Destroy()
method.State:Listen(...)
now returns a function to disconnect the listener.State
object’s listener function’s value order being typed wrong.Children
key.UnregisterKey
function.Internal changes: https://github.com/lumin-dev/Aegis/compare/v0.1.0...v0.2.0
There is only one success - to be able to spend your life in your own way. - Christopher Morley
props.Children
when using component childrenInternal changes: Comparing v0.2.0...v0.2.1 · lumin-dev/Aegis · GitHub
For the next release, should I add a tween
constructor as well, alongside the spring
constructor? Will help with animation purposes but would like to hear people’s opinions on it.
tween
constructor?0 voters
Unfortunately, the release will be a bit late as I have exams going on currently.
Sorry for the delay on this fix ;-;
Internal changes: Comparing v0.2.1...v0.2.2 · lumin-dev/Aegis · GitHub
Hi everyone. 2 things to notify:
Creativity is intelligence having fun - Albert Einstein
Component<T>
typeInternal changelog: Comparing v0.2.2...v0.2.3 · lumin-dev/Aegis · GitHub