De-plushied SHADE_Managed comments
This commit is contained in:
parent
a3fe98317d
commit
bbe8622d1e
|
@ -97,7 +97,7 @@ namespace SHADE
|
|||
/// <summary>
|
||||
/// Removes all Scripts of the specified type from this GameObject.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">Type of PLushieScripts to remove.</typeparam>
|
||||
/// <typeparam name="T">Type of Scripts to remove.</typeparam>
|
||||
generic<typename T> where T : ref class, Script
|
||||
void RemoveScript();
|
||||
|
||||
|
|
|
@ -39,10 +39,10 @@ namespace SHADE
|
|||
/// <param name="entity">The Entity to render the Scripts of.</param>
|
||||
static void RenderScriptsInInspector(Entity entity);
|
||||
/// <summary>
|
||||
/// Renders a dropdown button that allows for the addition of PlushieScripts
|
||||
/// onto the specified Entity.
|
||||
/// Renders a dropdown button that allows for the addition of Scripts onto the
|
||||
/// specified Entity.
|
||||
/// </summary>
|
||||
/// <param name="entity">The Entity to add PlushieScripts to.</param>
|
||||
/// <param name="entity">The Entity to add Scripts to.</param>
|
||||
static void RenderScriptAddButton(Entity entity);
|
||||
|
||||
/*-----------------------------------------------------------------------------*/
|
||||
|
|
|
@ -20,7 +20,7 @@ namespace SHADE
|
|||
{
|
||||
/// <summary>
|
||||
/// Static class that contains the functions for interfacing with the core
|
||||
/// PlushieEngine written in C++ for managing the lifecycle of managed code.
|
||||
/// SHADE Engine written in C++ for managing the lifecycle of managed code.
|
||||
/// </summary>
|
||||
private ref class EngineInterface abstract sealed
|
||||
{
|
||||
|
|
|
@ -210,7 +210,7 @@ namespace SHADE
|
|||
/// <summary>
|
||||
/// Removes all Scripts of the specified type from this GameObject.
|
||||
/// </summary>
|
||||
/// <typeparam name="T">Type of PLushieScripts to remove.</typeparam>
|
||||
/// <typeparam name="T">Type of Scripts to remove.</typeparam>
|
||||
generic<typename T> where T : ref class, Script
|
||||
void RemoveScript();
|
||||
|
||||
|
|
|
@ -276,4 +276,4 @@ namespace SHADE
|
|||
{
|
||||
return !(lhs == rhs);
|
||||
}
|
||||
} // namespace PlushieAPI::Mathematics
|
||||
}
|
||||
|
|
|
@ -294,4 +294,4 @@ namespace SHADE
|
|||
{
|
||||
return Vector3(vec);
|
||||
}
|
||||
} // namespace PlushieAPI::Mathematics
|
||||
}
|
||||
|
|
|
@ -439,4 +439,5 @@ namespace SHADE
|
|||
/// <param name="vec">Vector2 to convert from.</param>
|
||||
static explicit operator Vector3(Vector2 vec);
|
||||
};
|
||||
} // namespace PlushieAPI::Mathematics
|
||||
}
|
||||
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
\author Tng Kah Wei, kahwei.tng, 390009620
|
||||
\par email: kahwei.tng\@digipen.edu
|
||||
\date Oct 28, 2021
|
||||
\brief Contains the definition of the functions for the PlushieScript managed
|
||||
class.
|
||||
\brief Contains the definition of the functions for the Script managed class.
|
||||
|
||||
Note: This file is written in C++17/CLI.
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ namespace SHADE
|
|||
/// </summary>
|
||||
/// <typeparam name="T">
|
||||
/// Type of script to add.
|
||||
/// This needs to be a default constructable PlushieScript.
|
||||
/// This needs to be a default constructable Script.
|
||||
/// </typeparam>
|
||||
/// <param name="entity">The entity to add a script to.</param>
|
||||
/// <returns>Reference to the script added.</returns>
|
||||
|
|
|
@ -33,4 +33,4 @@ namespace SHADE
|
|||
{
|
||||
return nullptr;
|
||||
}
|
||||
} // namespace PlushieAPI
|
||||
}
|
||||
|
|
|
@ -36,4 +36,4 @@ namespace SHADE
|
|||
/*-----------------------------------------------------------------------------*/
|
||||
System::Reflection::Assembly^ Load(System::Reflection::AssemblyName^ assemblyName) override;
|
||||
};
|
||||
} // namespace PlushieAPI
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue