2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
4.4 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using Articy.Touhou;
using Articy.Unity;
using Articy.Unity.Interfaces;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Articy.Touhou.Features
{
[Serializable()]
public class DramaCharacterFeature : IArticyBaseObject, IPropertyProvider
{
[SerializeField()]
private String mName;
[SerializeField()]
private ArticyValueArticyObject mIcon = new ArticyValueArticyObject();
[SerializeField()]
private UInt64 mOwnerId;
[SerializeField()]
private UInt32 mOwnerInstanceId;
public String Unresolved_Name
{
get
{
return mName;
}
}
public String Name
{
get
{
return Articy.Unity.ArticyTextExtension.Resolve(this, mName);
}
set
{
var oldValue = mName;
mName = value;
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(OwnerId, OwnerInstanceId, "DramaCharacter.Name", oldValue, mName);
}
}
public ArticyObject Icon
{
get
{
return mIcon.GetValue();
}
set
{
var oldValue = mIcon;
mIcon.SetValue(value);
Articy.Unity.ArticyDatabase.ObjectNotifications.ReportChanged(OwnerId, OwnerInstanceId, "DramaCharacter.Icon", oldValue.GetValue(), mIcon.GetValue());
}
}
public UInt64 OwnerId
{
get
{
return mOwnerId;
}
set
{
mOwnerId = value;
}
}
public UInt32 OwnerInstanceId
{
get
{
return mOwnerInstanceId;
}
set
{
mOwnerInstanceId = value;
}
}
private void CloneProperties(object aClone, Articy.Unity.ArticyObject aFirstClassParent)
{
Articy.Touhou.Features.DramaCharacterFeature newClone = ((Articy.Touhou.Features.DramaCharacterFeature)(aClone));
newClone.Name = Unresolved_Name;
if ((mIcon != null))
{
newClone.mIcon = ((ArticyValueArticyObject)(mIcon.CloneObject(newClone, aFirstClassParent)));
}
newClone.OwnerId = OwnerId;
}
public object CloneObject(object aParent, Articy.Unity.ArticyObject aFirstClassParent)
{
Articy.Touhou.Features.DramaCharacterFeature clone = new Articy.Touhou.Features.DramaCharacterFeature();
CloneProperties(clone, aFirstClassParent);
return clone;
}
public virtual bool IsLocalizedPropertyOverwritten(string aProperty)
{
return false;
}
#region property provider interface
public void setProp(string aProperty, object aValue)
{
if ((aProperty == "Name"))
{
Name = System.Convert.ToString(aValue);
return;
}
if ((aProperty == "Icon"))
{
Icon = Articy.Unity.Interfaces.BaseScriptFragments.ObjectToModelRep(aValue);
return;
}
}
public Articy.Unity.Interfaces.ScriptDataProxy getProp(string aProperty)
{
if ((aProperty == "Name"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(Name);
}
if ((aProperty == "Icon"))
{
return new Articy.Unity.Interfaces.ScriptDataProxy(Icon);
}
return null;
}
#endregion
}
}