mirror of
https://github.com/CrispyPin/ovr-utils.git
synced 2024-11-10 02:40:25 +01:00
add basic XYZ widget
This commit is contained in:
parent
e321a72c23
commit
9bda7d6169
7 changed files with 103 additions and 8 deletions
|
@ -1,9 +1,11 @@
|
|||
[gd_scene load_steps=5 format=2]
|
||||
[gd_scene load_steps=7 format=2]
|
||||
|
||||
[ext_resource path="res://addons/openvr_overlay/OverlayInstance.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://overlays/FPSOverlay.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://overlays/TimeOverlay.tscn" type="PackedScene" id=3]
|
||||
[ext_resource path="res://temp.gd" type="Script" id=4]
|
||||
[ext_resource path="res://overlays/xyz_widget/zx.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://overlays/xyz_widget/yz.tscn" type="PackedScene" id=6]
|
||||
|
||||
[node name="Overlays" type="Node"]
|
||||
script = ExtResource( 4 )
|
||||
|
@ -20,3 +22,17 @@ overlay_scene = ExtResource( 3 )
|
|||
offset_pos = Vector3( -0.05, 0.02, 0.15 )
|
||||
offset_rot = Vector3( 0, -90, -135 )
|
||||
width_meters = 0.8
|
||||
|
||||
[node name="XYZ Widget" type="Node" parent="."]
|
||||
|
||||
[node name="YZ" parent="XYZ Widget" instance=ExtResource( 1 )]
|
||||
target = 1
|
||||
overlay_scene = ExtResource( 6 )
|
||||
offset_pos = Vector3( 0, 0, 0 )
|
||||
offset_rot = Vector3( 0, -90, 0 )
|
||||
|
||||
[node name="ZX" parent="XYZ Widget" instance=ExtResource( 1 )]
|
||||
target = 1
|
||||
overlay_scene = ExtResource( 5 )
|
||||
offset_pos = Vector3( 0, 0, 0 )
|
||||
offset_rot = Vector3( 90, 0, 0 )
|
||||
|
|
|
@ -1,12 +1,10 @@
|
|||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://icon.png" type="Texture" id=1]
|
||||
[ext_resource path="res://overlays/xyz_widget/yz_widget.png" type="Texture" id=1]
|
||||
|
||||
[node name="Overlay" type="Control"]
|
||||
[node name="Control" type="Control"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 3
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
@ -16,6 +14,3 @@ anchor_right = 1.0
|
|||
anchor_bottom = 1.0
|
||||
texture = ExtResource( 1 )
|
||||
expand = true
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
BIN
ovr-utils/overlays/xyz_widget/yz_widget.png
Normal file
BIN
ovr-utils/overlays/xyz_widget/yz_widget.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 100 B |
34
ovr-utils/overlays/xyz_widget/yz_widget.png.import
Normal file
34
ovr-utils/overlays/xyz_widget/yz_widget.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/yz_widget.png-b9fa885c579466828b6d0caddc809e49.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://overlays/xyz_widget/yz_widget.png"
|
||||
dest_files=[ "res://.import/yz_widget.png-b9fa885c579466828b6d0caddc809e49.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=false
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
16
ovr-utils/overlays/xyz_widget/zx.tscn
Normal file
16
ovr-utils/overlays/xyz_widget/zx.tscn
Normal file
|
@ -0,0 +1,16 @@
|
|||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://overlays/xyz_widget/zx_widget.png" type="Texture" id=1]
|
||||
|
||||
[node name="Control" type="Control"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
texture = ExtResource( 1 )
|
||||
expand = true
|
BIN
ovr-utils/overlays/xyz_widget/zx_widget.png
Normal file
BIN
ovr-utils/overlays/xyz_widget/zx_widget.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 108 B |
34
ovr-utils/overlays/xyz_widget/zx_widget.png.import
Normal file
34
ovr-utils/overlays/xyz_widget/zx_widget.png.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/zx_widget.png-b7f8f97d1c970429dd17d72af3b467a5.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://overlays/xyz_widget/zx_widget.png"
|
||||
dest_files=[ "res://.import/zx_widget.png-b7f8f97d1c970429dd17d72af3b467a5.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=false
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
Loading…
Reference in a new issue