This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func getToDay(day : Double = 0) -> String { | |
let now = Date( timeInterval: 60*60*24*day, since: Date() as Date ) | |
let formatter = DateFormatter() | |
formatter.dateFormat = "yyyy-MM-dd" | |
return formatter.string(from: now as Date) | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.AddressableAssets; | |
using UnityEngine.Timeline; | |
using System; | |
[Serializable] | |
public class PageTransitionInfo | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private class TimelinePrivateMethodAndField : ITimelinePrivateMethodAndField | |
{ | |
private readonly MethodInfo _timelineAddMethod; | |
private readonly MethodInfo _timelineRemoveMethod; | |
private readonly MethodInfo _trackAddMethod; | |
private readonly MethodInfo _trackRemoveMethod; | |
private readonly FieldInfo _trackParentField; | |
public TimelinePrivateMethodAndField() | |
{ |
OlderNewer