Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. @prefix atom: <http://lv2plug.in/ns/ext/atom#> .
  2. @prefix lv2: <http://lv2plug.in/ns/lv2core#> .
  3. @prefix pset: <http://lv2plug.in/ns/ext/presets#> .
  4. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  5. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  6. @prefix state: <http://lv2plug.in/ns/ext/state#> .
  7. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  8.  
  9. <>
  10. a pset:Preset ;
  11. lv2:appliesTo <http://lsp-plug.in/plugins/lv2/room_builder_mono> ;
  12. state:state [
  13. <http://lsp-plug.in/types/lv2/types#KVT>
  14. a <http://lsp-plug.in/types/lv2/types#KVT> [
  15. <http://lsp-plug.in/kvt/scene/selected> "0"^^xsd:int ;
  16. <http://lsp-plug.in/kvt/scene/objects> "0"^^xsd:int ;
  17. <http://lsp-plug.in/kvt/scene/object/0/enabled> "1.0"^^xsd:float
  18. ];
  19. <http://lsp-plug.in/plugins/lv2/room_builder_mono/ports#ifn> <file:///home/sadko/eclipse/lsp-plugins/res/test/3d/devel-room.obj>
  20. ] .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement