We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a468e3 commit 3f4bb83Copy full SHA for 3f4bb83
Foundation/Public/Aurora.Scene/Entity.hpp
@@ -179,6 +179,13 @@ namespace Scene
179
return Scene::Proxy<Type>(mHandle.get_ref<Type>());
180
}
181
182
+ // -=(Undocumented)=-
183
+ template<typename First, typename Second>
184
+ auto Link() const
185
+ {
186
+ return Scene::Proxy<Second>(mHandle.get_ref<First, Second>());
187
+ }
188
+
189
// -=(Undocumented)=-
190
template<typename Type>
191
auto Find() const
Foundation/Public/Aurora.Scene/Proxy.hpp
@@ -43,7 +43,7 @@ namespace Scene
43
44
Bool IsNull() const
45
{
46
- return mHandle == 0;
+ return mHandle.component() == 0;
47
48
49
0 commit comments