Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/scenekit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2016,49 +2016,57 @@ interface SCNMaterialProperty : SCNAnimatable, NSSecureCoding {
/// <value>To be added.</value>
/// <remarks>To be added.</remarks>
[Wrap ("Contents")]
[NullAllowed]
NSColor ContentColor { get; set; }

/// <summary>Gets or sets the material property's image.</summary>
/// <value>To be added.</value>
/// <remarks>To be added.</remarks>
[Wrap ("Contents")]
[NullAllowed]
NSImage ContentImage { get; set; }

/// <summary>Gets or sets the material property's animation layer.</summary>
/// <value>To be added.</value>
/// <remarks>To be added.</remarks>
[MacCatalyst (13, 1)]
[Wrap ("Contents")]
[NullAllowed]
CALayer ContentLayer { get; set; }

/// <summary>Gets or sets the path to the image that is used for the material property's contents.</summary>
/// <value>To be added.</value>
/// <remarks>To be added.</remarks>
[Wrap ("Contents")]
[NullAllowed]
NSString ContentPath { get; set; }

/// <summary>Gets or sets the URL that specifies the material property's image content.</summary>
/// <value>To be added.</value>
/// <remarks>To be added.</remarks>
[Wrap ("Contents")]
[NullAllowed]
NSUrl ContentUrl { get; set; }

/// <summary>Gets or sets the material property's scene.</summary>
/// <value>To be added.</value>
/// <remarks>To be added.</remarks>
[Wrap ("Contents")]
[NullAllowed]
SKScene ContentScene { get; set; }

/// <summary>Gets or sets the material property's texture.</summary>
/// <value>To be added.</value>
/// <remarks>To be added.</remarks>
[Wrap ("Contents")]
[NullAllowed]
SKTexture ContentTexture { get; set; }

/// <summary>Gets or sets the material property's image cube.</summary>
/// <value>To be added.</value>
/// <remarks>To be added.</remarks>
[Wrap ("Contents")]
[NullAllowed]
NSImage [] ContentImageCube { get; set; }

[MacCatalyst (13, 1)]
Expand Down
Loading