Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Ivmi-Builder
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Damien Marchal
Ivmi-Builder
Commits
d25518a2
Commit
d25518a2
authored
1 year ago
by
Florent Berthaut
Browse files
Options
Downloads
Patches
Plain Diff
Update readme
parent
eb29c6e3
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+17
-9
17 additions, 9 deletions
README.md
with
17 additions
and
9 deletions
README.md
+
17
−
9
View file @
d25518a2
...
@@ -77,26 +77,27 @@ IVMI-node are the main components of any IVMI instruments. IVMI-node contains IV
...
@@ -77,26 +77,27 @@ IVMI-node are the main components of any IVMI instruments. IVMI-node contains IV
```
python
```
python
extends
IvmiNode
extends
IvmiNode
func
_ready
():
func
_ready
()
->
void
:
# Call default IvmiNode constructor
# Call default IvmiNode constructor
super
.
_ready
()
super
.
_ready
()
# Optionally define a node type
_set_ivmi_type
(
"
my_node
"
)
# Add custom properties with array of values
# Add custom properties with array of values
_add_property
(
"
selected
"
,
[
0
])
_add_property
(
"
selected
"
,
[
0
])
# [Optionally define a node type]
_set_ivmi_type
(
"
my_node
"
)
# Properties are sent by default, optionnally deactivate sending
#
[
Properties are sent by default, optionnally deactivate sending
]
_properties
[
"
selected
"
].
set_listen
(
false
)
_properties
[
"
selected
"
].
set_listen
(
false
)
func
process
(
delta
)
:
func
_
process
(
delta
:
float
)
->
void
:
# Call default IvmiNode processing, required for updates
# Call default IvmiNode processing, required for updates
super
.
_process
(
delta
)
super
.
_process
(
delta
)
func
_set_property
(
prop
,
vals
)
:
func
_set_property
(
prop
:
String
,
vals
:
Array
)
->
void
:
# Call default properties handling
# Call default properties handling
super
.
_set_property
(
prop
,
vals
)
super
.
_set_property
(
prop
,
vals
)
...
@@ -146,7 +147,14 @@ TODO
...
@@ -146,7 +147,14 @@ TODO
### Android based headset
### Android based headset
TODO
Use CompabilityGL Rendering Mode
#### Activating Passthrough
*
Add an environment with a custom color background and an alpha value of 0
*
Activate Optional or Requested Passthrough in the Android Export configuration
*
Toggle passthrough in the IvmiScene XR properties
### Stereoscopic displays
### Stereoscopic displays
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment