当前位置: 首页 > article >正文

Unity 获取序列化对象属性详解

Unity 获取序列化对象属性详解

基本步骤

1. 创建序列化对象

SerializedObject serializedObject = new SerializedObject(targetObject);

2. 获取属性迭代器

SerializedProperty iterator = serializedObject.GetIterator();

3. 遍历所有属性

while (iterator.Next(true)) // true表示包含子属性
{
    Debug.Log($"属性路径: {iterator.propertyPath}");
    Debug.Log($"属性类型: {iterator.propertyType}");
}

常用属性类型判断

基础类型

if (iterator.propertyType == SerializedPropertyType.Integer)
{
    int value = iterator.intValue;
}
else if (iterator.propertyType == SerializedPropertyType.Boolean)
{
    bool value = iterator.boolValue;
}
else if (iterator.propertyType == SerializedPropertyType.String)
{
    string value = iterator.stringValue;
}

复杂类型

if (iterator.propertyType == SerializedPropertyType.Generic)
{
    // 通常是数组或自定义类型
    SerializedProperty arraySize = iterator.FindPropertyRelative("Array.size");
}

修改属性值

1. 开始修改

serializedObject.Update();

2. 修改值

SerializedProperty property = serializedObject.FindProperty("propertyName");
property.intValue = newValue;

3. 应用修改

serializedObject.ApplyModifiedProperties();

常用查找方法

直接查找属性

SerializedProperty property = serializedObject.FindProperty("propertyName");

查找相对属性

SerializedProperty childProperty = property.FindPropertyRelative("childName");

查找数组元素

SerializedProperty element = property.GetArrayElementAtIndex(index);

实际应用示例

修改图集设置

SerializedObject importer = new SerializedObject(spriteAtlasImporter);
var packingSettings = importer.FindProperty("m_PackingSettings");

// 修改打包设置
var enableRotation = packingSettings.FindPropertyRelative("enableRotation");
enableRotation.boolValue = false;

// 应用修改
importer.ApplyModifiedProperties();

http://www.kler.cn/a/510295.html

相关文章:

  • 数字图像处理:实验二
  • python+django+Nacos实现配置动态更新-集中管理配置(实现mysql配置动态读取及动态更新)
  • leetcode-买卖股票问题
  • Social LSTM:Human Trajectory Prediction in Crowded Spaces | 文献翻译
  • 基于Python+Gurobi的库存分配问题建模求解
  • Redis 中 TTL 的基本知识与禁用缓存键的实现策略(Java)
  • AIP-121 面向资源设计
  • Linux-----线程同步(条件变量)
  • 开源模型应用落地-工具使用篇-Spring AI-Function Call(八)
  • 爬虫第一篇
  • oneplus3t-lineage-14编译-android7
  • Jenkins搭建
  • 深度学习中的张量 - 使用PyTorch进行广播和元素级操作
  • 后盾人JS -- 好用的 JavaScript Symbol 类型
  • 【ArcGIS微课1000例】0140:总览(鹰眼)、放大镜、查看器的用法
  • C++实现设计模式---组合模式 (Composite)
  • RabbitMQ---TTL与死信
  • 参数校验 Spring Validation框架
  • 探秘Shortest与Stagehand:开启高效测试与自动化新篇
  • 【Idea】编译Spring源码 read timeout 问题
  • FastGPT结合New-api,遍享各类大模型
  • pytest全局配置文件pytest.ini
  • rabbitmq安装延迟队列
  • MinerU:高效智能PDF文档解析工具完全指南
  • pg_sql关于时间的函数
  • 刷题小白——排序