@@ -1499,33 +1499,31 @@ partial interface SKVideoNode {
1499
1499
[ Static , Export ( "videoNodeWithAVPlayer:" ) ]
1500
1500
SKVideoNode FromPlayer ( AVPlayer player ) ;
1501
1501
1502
- [ Static , Export ( "videoNodeWithVideoFileNamed:" ) , Internal ]
1503
- SKVideoNode VideoNodeWithVideoFileNamed ( string videoFile ) ;
1502
+ /// <summary>Create a video node from the named video file.</summary>
1503
+ /// <param name="videoFile">The video file to create the <see cref="SKVideoNode" /> from.</param>
1504
+ [ Static , Export ( "videoNodeWithFileNamed:" ) ]
1505
+ SKVideoNode FromFile ( string videoFile ) ;
1504
1506
1505
- [ Static , Export ( "videoNodeWithFileNamed:" ) , Internal ]
1506
- SKVideoNode VideoNodeWithFileNamed ( string videoFile ) ;
1507
-
1508
- [ Static , Export ( "videoNodeWithVideoURL:" ) , Internal ]
1509
- SKVideoNode VideoNodeWithVideoURL ( NSUrl videoURL ) ;
1510
-
1511
- [ Static , Export ( "videoNodeWithURL:" ) , Internal ]
1512
- SKVideoNode VideoNodeWithURL ( NSUrl videoURL ) ;
1507
+ /// <summary>Creates a video node from the file at the specified URL.</summary>
1508
+ /// <param name="videoUrl">The video url to create the <see cref="SKVideoNode" /> from.</param>
1509
+ [ Static , Export ( "videoNodeWithURL:" ) ]
1510
+ SKVideoNode FromUrl ( NSUrl videoUrl ) ;
1513
1511
1514
1512
[ DesignatedInitializer ]
1515
1513
[ Export ( "initWithAVPlayer:" ) ]
1516
1514
NativeHandle Constructor ( AVPlayer player ) ;
1517
1515
1518
- [ Export ( "initWithVideoFileNamed:" ) , Internal ]
1519
- IntPtr InitWithVideoFileNamed ( string videoFile ) ;
1520
-
1521
- [ Export ( "initWithFileNamed:" ) , Internal ]
1522
- IntPtr InitWithFileNamed ( string videoFile ) ;
1523
-
1524
- [ Export ( "initWithVideoURL:" ) , Internal ]
1525
- IntPtr InitWithVideoURL ( NSUrl url ) ;
1516
+ /// <summary>Create a video node from the named video file.</summary>
1517
+ /// <param name="videoFile">The video file to create the <see cref="SKVideoNode" /> from.</param>
1518
+ [ Export ( "initWithFileNamed:" ) ]
1519
+ [ DesignatedInitializer ]
1520
+ NativeHandle Constructor ( string videoFile ) ;
1526
1521
1527
- [ Export ( "initWithURL:" ) , Internal ]
1528
- IntPtr InitWithURL ( NSUrl url ) ;
1522
+ /// <summary>Creates a video node from the file at the specified URL.</summary>
1523
+ /// <param name="url">The video url to create the <see cref="SKVideoNode" /> from.</param>
1524
+ [ Export ( "initWithURL:" ) ]
1525
+ [ DesignatedInitializer ]
1526
+ NativeHandle Constructor ( NSUrl url ) ;
1529
1527
1530
1528
[ Export ( "play" ) ]
1531
1529
void Play ( ) ;
0 commit comments