暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ShowOptions.cs 411B

123456789101112131415
  1. using System;
  2. namespace UnityEngine.Advertisements
  3. {
  4. /// <summary>
  5. /// A collection of options that you can pass to <c>Advertisement.Show</c>, to modify ad behaviour.
  6. /// </summary>
  7. public class ShowOptions
  8. {
  9. /// <summary>
  10. /// Add a string to specify an identifier for a specific user in the game.
  11. /// </summary>
  12. public string gamerSid { get; set; }
  13. }
  14. }