コード例 #1
0
 static public int get_VolumeScale(IntPtr l)
 {
     try {
         CinemaDirector.PlayOneShotAudioEvent self = (CinemaDirector.PlayOneShotAudioEvent)checkSelf(l);
         pushValue(l, self.VolumeScale);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #2
0
 static public int constructor(IntPtr l)
 {
     try {
         CinemaDirector.PlayOneShotAudioEvent o;
         o = new CinemaDirector.PlayOneShotAudioEvent();
         pushValue(l, o);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #3
0
 static public int set_VolumeScale(IntPtr l)
 {
     try {
         CinemaDirector.PlayOneShotAudioEvent self = (CinemaDirector.PlayOneShotAudioEvent)checkSelf(l);
         System.Single v;
         checkType(l, 2, out v);
         self.VolumeScale = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #4
0
 static public int set_Clip(IntPtr l)
 {
     try {
         CinemaDirector.PlayOneShotAudioEvent self = (CinemaDirector.PlayOneShotAudioEvent)checkSelf(l);
         UnityEngine.AudioClip v;
         checkType(l, 2, out v);
         self.Clip = v;
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
コード例 #5
0
 static public int Trigger(IntPtr l)
 {
     try {
         CinemaDirector.PlayOneShotAudioEvent self = (CinemaDirector.PlayOneShotAudioEvent)checkSelf(l);
         UnityEngine.GameObject a1;
         checkType(l, 2, out a1);
         self.Trigger(a1);
         return(0);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }