/*WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW*\ ( ( ) ) |/ \| ) ) _((_ || (c) Wanzyee Studio < wanzyeestudio.blogspot.com > || ( ( |_ _ |=n |\ /| _____)) | ! ] U \.ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ./ (_(__(S) |___*/ using UnityEngine; namespace WanzyeeStudio.Json{ /// /// Custom Newtonsoft.Json.JsonConverter for UnityEngine.Rect. /// public class RectConverter : PartialConverter{ /// /// Get the property names include x, y, width, height. /// /// The property names. protected override string[] GetPropertyNames(){ return new []{"x", "y", "width", "height"}; } } }