AcManager.Controls.CustomShowroom.CustomShowroomWrapper.StartAsync C# (CSharp) Method

StartAsync() public static method

public static StartAsync ( string kn5, string skinId = null ) : System.Threading.Tasks.Task
kn5 string
skinId string
return System.Threading.Tasks.Task
        public static Task StartAsync(string kn5, string skinId = null) {
            var key = SettingsHolder.CustomShowroom.LiteByDefault;
            if (Keyboard.Modifiers.HasFlag(ModifierKeys.Control)) {
                key = !key;
            }
            return StartAsync(key ? CustomShowroomMode.Lite : CustomShowroomMode.Fancy, kn5, skinId);
        }

Same methods

CustomShowroomWrapper::StartAsync ( CarObject car, CarSkinObject skin = null ) : System.Threading.Tasks.Task
CustomShowroomWrapper::StartAsync ( CustomShowroomMode mode, CarObject car, CarSkinObject skin = null ) : System.Threading.Tasks.Task
CustomShowroomWrapper::StartAsync ( CustomShowroomMode mode, string kn5, string skinId = null ) : System.Threading.Tasks.Task