Add missing comments for spawnable json proxy ctors.
This commit is contained in:
@@ -168,11 +168,18 @@ namespace FlaxEditor.Content
|
|||||||
|
|
||||||
private SpriteHandle _thumbnail;
|
private SpriteHandle _thumbnail;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Default Constructor.
|
||||||
|
/// </summary>
|
||||||
public SpawnableJsonAssetProxy()
|
public SpawnableJsonAssetProxy()
|
||||||
{
|
{
|
||||||
_thumbnail = SpriteHandle.Invalid;
|
_thumbnail = SpriteHandle.Invalid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Constructor with overriden thumbnail.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="thumbnail">The thumbnail to use.</param>
|
||||||
public SpawnableJsonAssetProxy(SpriteHandle thumbnail)
|
public SpawnableJsonAssetProxy(SpriteHandle thumbnail)
|
||||||
{
|
{
|
||||||
_thumbnail = thumbnail;
|
_thumbnail = thumbnail;
|
||||||
|
|||||||
Reference in New Issue
Block a user