mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-14 20:03:48 +00:00
Add QColor with hex values instead of color objects for compatibility
This commit is contained in:
+1
-9
@@ -37,7 +37,6 @@ namespace QSharp
|
||||
|
||||
public bool IsUpdate { get{ return OSCMessage.Address.StartsWith("/update"); } }
|
||||
|
||||
|
||||
public bool IsWorkspaceUpdate {
|
||||
get {
|
||||
// /update/workspace/{workspace_id}
|
||||
@@ -54,7 +53,6 @@ namespace QSharp
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public bool IsWorkspaceSettingsUpdate {
|
||||
get {
|
||||
// /update/workspace/{workspace_id}/settings/{settings_controller}
|
||||
@@ -63,7 +61,6 @@ namespace QSharp
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public bool IsLightDashboardUpdate {
|
||||
get {
|
||||
// /update/workspace/{workspace_id}/dashboard
|
||||
@@ -72,7 +69,6 @@ namespace QSharp
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public bool IsCueUpdate {
|
||||
get {
|
||||
// /update/workspace/{workspace_id}/cue_id/{cue_id}
|
||||
@@ -81,7 +77,6 @@ namespace QSharp
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public bool IsPlaybackPositionUpdate {
|
||||
get {
|
||||
// /update/workspace/{workspace_id}/cueList/{cue_list_id}/playbackPosition {cue_id}
|
||||
@@ -90,7 +85,6 @@ namespace QSharp
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public bool IsPreferencesUpdate {
|
||||
get {
|
||||
string[] parts = AddressParts;
|
||||
@@ -115,6 +109,7 @@ namespace QSharp
|
||||
}
|
||||
#endregion
|
||||
|
||||
//host method
|
||||
|
||||
public string address { get { return OSCMessage.Address; } }
|
||||
|
||||
@@ -136,8 +131,6 @@ namespace QSharp
|
||||
get
|
||||
{
|
||||
JObject responseObj = JObject.Parse((string)arguments[0]);
|
||||
|
||||
//TODO
|
||||
return responseObj["data"];
|
||||
}
|
||||
}
|
||||
@@ -166,6 +159,5 @@ namespace QSharp
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user