# ChangeAssetObjectPropertiesEventArgs

> A change of this type indicates that a property of an asset object in memory has changed. This happens for example when Undo.RecordObject is used with an instance of an asset (e.g. Texture ). Note that this only covers changes to asset objects in memory and not changes to assets in the project on disk.

## Definition

* **Type:** Struct
* **Namespace:** [UnityEditor](/engine/6000.0/script-reference/unityeditor.md)
* **Assembly:** UnityEditor

```csharp
public struct ChangeAssetObjectPropertiesEventArgs
```

## Constructors

| Constructor                                                                                                                                                                                       | Description                |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------- |
| [ChangeAssetObjectPropertiesEventArgs(UnityEditor.GUID,System.Int32,UnityEngine.SceneManagement.Scene)](/engine/6000.0/script-reference/unityeditor/changeassetobjectpropertieseventargs/ctor.md) | Constructs a new instance. |

## Properties

| Property                                                                                                     | Description                                                                                                                                                                                                                                                                                     |
| ------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [guid](/engine/6000.0/script-reference/unityeditor/changeassetobjectpropertieseventargs/guid.md)             | The GUID of the changed asset.                                                                                                                                                                                                                                                                  |
| [instanceId](/engine/6000.0/script-reference/unityeditor/changeassetobjectpropertieseventargs/instanceid.md) | The instance ID of the modified asset.                                                                                                                                                                                                                                                          |
| [scene](/engine/6000.0/script-reference/unityeditor/changeassetobjectpropertieseventargs/scene.md)           | The [Scene](/engine/6000.0/script-reference/unityeditor/searchservice/scene.md) that contains the modified asset. This is usually an invalid scene unless the asset is explicitly associated in a scene (e.g. [RenderSettings](/engine/6000.0/script-reference/unityengine/rendersettings.md)). |
