Browse Source

Add props:Reset property

Signed-off-by: falkTX <falktx@falktx.com>
master
falkTX 4 months ago
parent
commit
1393d56674
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 8 additions and 1 deletions
  1. +2
    -1
      kx-properties.lv2/props.h
  2. +6
    -0
      kx-properties.lv2/props.ttl

+ 2
- 1
kx-properties.lv2/props.h View File

@@ -1,6 +1,6 @@
/*
LV2 KXStudio Properties Extension
Copyright 2014-2021 Filipe Coelho <falktx@falktx.com>
Copyright 2014-2024 Filipe Coelho <falktx@falktx.com>

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -27,6 +27,7 @@
#define LV2_KXSTUDIO_PROPERTIES_PREFIX LV2_KXSTUDIO_PROPERTIES_URI "#"

#define LV2_KXSTUDIO_PROPERTIES__NonAutomatable LV2_KXSTUDIO_PROPERTIES_PREFIX "NonAutomatable"
#define LV2_KXSTUDIO_PROPERTIES__Reset LV2_KXSTUDIO_PROPERTIES_PREFIX "Reset"
#define LV2_KXSTUDIO_PROPERTIES__TimePositionTicksPerBeat LV2_KXSTUDIO_PROPERTIES_PREFIX "TimePositionTicksPerBeat"
#define LV2_KXSTUDIO_PROPERTIES__TransientWindowId LV2_KXSTUDIO_PROPERTIES_PREFIX "TransientWindowId"



+ 6
- 0
kx-properties.lv2/props.ttl View File

@@ -18,6 +18,12 @@ props:NonAutomatable
rdfs:label "non automatable" ;
rdfs:comment "Port should not be automated by the host." .

props:Reset
a rdf:Property , owl:DatatypeProperty ;
rdfs:range xsd:float ;
rdfs:label "reset" ;
rdfs:comment "Reset an internal processing plugin state (filters, oscillators, envelopes, lfos, etc) and kill all voices." .

props:TimePositionTicksPerBeat
a rdf:Property , owl:DatatypeProperty ;
rdfs:range xsd:float ;


Loading…
Cancel
Save