# 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.7/script-reference/unityeditor.md)
* **Assembly:** UnityEditor.CoreModule

```csharp
public struct ChangeAssetObjectPropertiesEventArgs
```

## Constructors

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

## Properties

| Property                                                                                                 | Description                                                                                                                                                                                                                                                                                     |
| -------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [entityId](/engine/6000.7/script-reference/unityeditor/changeassetobjectpropertieseventargs/entityid.md) | The EntityId of the modified asset.                                                                                                                                                                                                                                                             |
| [guid](/engine/6000.7/script-reference/unityeditor/changeassetobjectpropertieseventargs/guid.md)         | The GUID of the changed asset.                                                                                                                                                                                                                                                                  |
| [scene](/engine/6000.7/script-reference/unityeditor/changeassetobjectpropertieseventargs/scene.md)       | The [Scene](/engine/6000.7/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.7/script-reference/unityengine/rendersettings.md)). |
