├── .clippy.toml ├── .envrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── publish_readme.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── Resources ├── accept-icon.png ├── accept-icon.png.import ├── icon.png ├── icon.png.import └── theme.tres ├── SECURITY.md ├── Scenes ├── Choices │ ├── Choices.gd │ ├── Choices.gd.uid │ └── Choices.tscn ├── MainScene │ ├── Controls.gd │ ├── Controls.gd.uid │ └── MainScene.tscn ├── Progress │ ├── Progress.gd │ ├── Progress.gd.uid │ └── Progress.tscn ├── Prompt │ ├── Prompt.gd │ ├── Prompt.gd.uid │ └── Prompt.tscn └── TitleBar │ ├── TitleBar.gd │ ├── TitleBar.gd.uid │ └── TitleBar.tscn ├── addons └── controller_icons │ ├── ControllerIcons.gd │ ├── ControllerIcons.gd.uid │ ├── LICENSE │ ├── Mapper.gd │ ├── Mapper.gd.uid │ ├── Settings.gd │ ├── Settings.gd.uid │ ├── assets │ ├── disconnected.png │ ├── disconnected.png.import │ ├── key │ │ ├── 0.png │ │ ├── 0.png.import │ │ ├── 1.png │ │ ├── 1.png.import │ │ ├── 2.png │ │ ├── 2.png.import │ │ ├── 3.png │ │ ├── 3.png.import │ │ ├── 4.png │ │ ├── 4.png.import │ │ ├── 5.png │ │ ├── 5.png.import │ │ ├── 6.png │ │ ├── 6.png.import │ │ ├── 7.png │ │ ├── 7.png.import │ │ ├── 8.png │ │ ├── 8.png.import │ │ ├── 9.png │ │ ├── 9.png.import │ │ ├── a.png │ │ ├── a.png.import │ │ ├── alt.png │ │ ├── alt.png.import │ │ ├── arrow_down.png │ │ ├── arrow_down.png.import │ │ ├── arrow_left.png │ │ ├── arrow_left.png.import │ │ ├── arrow_right.png │ │ ├── arrow_right.png.import │ │ ├── arrow_up.png │ │ ├── arrow_up.png.import │ │ ├── asterisk.png │ │ ├── asterisk.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── backspace.png │ │ ├── backspace.png.import │ │ ├── backspace_alt.png │ │ ├── backspace_alt.png.import │ │ ├── bracket_left.png │ │ ├── bracket_left.png.import │ │ ├── bracket_right.png │ │ ├── bracket_right.png.import │ │ ├── c.png │ │ ├── c.png.import │ │ ├── caps_lock.png │ │ ├── caps_lock.png.import │ │ ├── command.png │ │ ├── command.png.import │ │ ├── ctrl.png │ │ ├── ctrl.png.import │ │ ├── d.png │ │ ├── d.png.import │ │ ├── del.png │ │ ├── del.png.import │ │ ├── e.png │ │ ├── e.png.import │ │ ├── end.png │ │ ├── end.png.import │ │ ├── enter.png │ │ ├── enter.png.import │ │ ├── enter_alt.png │ │ ├── enter_alt.png.import │ │ ├── enter_tall.png │ │ ├── enter_tall.png.import │ │ ├── esc.png │ │ ├── esc.png.import │ │ ├── f.png │ │ ├── f.png.import │ │ ├── f1.png │ │ ├── f1.png.import │ │ ├── f10.png │ │ ├── f10.png.import │ │ ├── f11.png │ │ ├── f11.png.import │ │ ├── f12.png │ │ ├── f12.png.import │ │ ├── f2.png │ │ ├── f2.png.import │ │ ├── f3.png │ │ ├── f3.png.import │ │ ├── f4.png │ │ ├── f4.png.import │ │ ├── f5.png │ │ ├── f5.png.import │ │ ├── f6.png │ │ ├── f6.png.import │ │ ├── f7.png │ │ ├── f7.png.import │ │ ├── f8.png │ │ ├── f8.png.import │ │ ├── f9.png │ │ ├── f9.png.import │ │ ├── g.png │ │ ├── g.png.import │ │ ├── h.png │ │ ├── h.png.import │ │ ├── home.png │ │ ├── home.png.import │ │ ├── i.png │ │ ├── i.png.import │ │ ├── insert.png │ │ ├── insert.png.import │ │ ├── j.png │ │ ├── j.png.import │ │ ├── k.png │ │ ├── k.png.import │ │ ├── l.png │ │ ├── l.png.import │ │ ├── m.png │ │ ├── m.png.import │ │ ├── mark_left.png │ │ ├── mark_left.png.import │ │ ├── mark_right.png │ │ ├── mark_right.png.import │ │ ├── minus.png │ │ ├── minus.png.import │ │ ├── n.png │ │ ├── n.png.import │ │ ├── num_lock.png │ │ ├── num_lock.png.import │ │ ├── o.png │ │ ├── o.png.import │ │ ├── p.png │ │ ├── p.png.import │ │ ├── page_down.png │ │ ├── page_down.png.import │ │ ├── page_up.png │ │ ├── page_up.png.import │ │ ├── plus.png │ │ ├── plus.png.import │ │ ├── plus_tall.png │ │ ├── plus_tall.png.import │ │ ├── print_screen.png │ │ ├── print_screen.png.import │ │ ├── q.png │ │ ├── q.png.import │ │ ├── question.png │ │ ├── question.png.import │ │ ├── quote.png │ │ ├── quote.png.import │ │ ├── r.png │ │ ├── r.png.import │ │ ├── s.png │ │ ├── s.png.import │ │ ├── semicolon.png │ │ ├── semicolon.png.import │ │ ├── shift.png │ │ ├── shift.png.import │ │ ├── shift_alt.png │ │ ├── shift_alt.png.import │ │ ├── slash.png │ │ ├── slash.png.import │ │ ├── space.png │ │ ├── space.png.import │ │ ├── t.png │ │ ├── t.png.import │ │ ├── tab.png │ │ ├── tab.png.import │ │ ├── tilda.png │ │ ├── tilda.png.import │ │ ├── u.png │ │ ├── u.png.import │ │ ├── v.png │ │ ├── v.png.import │ │ ├── w.png │ │ ├── w.png.import │ │ ├── win.png │ │ ├── win.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ ├── y.png.import │ │ ├── z.png │ │ └── z.png.import │ ├── luna │ │ ├── a.png │ │ ├── a.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── circle.png │ │ ├── circle.png.import │ │ ├── diagram.png │ │ ├── diagram.png.import │ │ ├── diagram_simple.png │ │ ├── diagram_simple.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── l_stick_click.png │ │ ├── l_stick_click.png.import │ │ ├── lb.png │ │ ├── lb.png.import │ │ ├── lt.png │ │ ├── lt.png.import │ │ ├── menu.png │ │ ├── menu.png.import │ │ ├── microphone.png │ │ ├── microphone.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── r_stick_click.png │ │ ├── r_stick_click.png.import │ │ ├── rb.png │ │ ├── rb.png.import │ │ ├── rt.png │ │ ├── rt.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ └── y.png.import │ ├── mouse │ │ ├── left.png │ │ ├── left.png.import │ │ ├── middle.png │ │ ├── middle.png.import │ │ ├── right.png │ │ ├── right.png.import │ │ ├── simple.png │ │ └── simple.png.import │ ├── ouya │ │ ├── a.png │ │ ├── a.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l1.png │ │ ├── l1.png.import │ │ ├── l2.png │ │ ├── l2.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── menu.png │ │ ├── menu.png.import │ │ ├── o.png │ │ ├── o.png.import │ │ ├── r1.png │ │ ├── r1.png.import │ │ ├── r2.png │ │ ├── r2.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── touch.png │ │ ├── touch.png.import │ │ ├── u.png │ │ ├── u.png.import │ │ ├── y.png │ │ └── y.png.import │ ├── positional │ │ ├── east.png │ │ ├── east.png.import │ │ ├── north.png │ │ ├── north.png.import │ │ ├── south.png │ │ ├── south.png.import │ │ ├── west.png │ │ └── west.png.import │ ├── ps3 │ │ ├── circle.png │ │ ├── circle.png.import │ │ ├── cross.png │ │ ├── cross.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l1.png │ │ ├── l1.png.import │ │ ├── l2.png │ │ ├── l2.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── l_stick_click.png │ │ ├── l_stick_click.png.import │ │ ├── r1.png │ │ ├── r1.png.import │ │ ├── r2.png │ │ ├── r2.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── r_stick_click.png │ │ ├── r_stick_click.png.import │ │ ├── select.png │ │ ├── select.png.import │ │ ├── square.png │ │ ├── square.png.import │ │ ├── start.png │ │ ├── start.png.import │ │ ├── triangle.png │ │ └── triangle.png.import │ ├── ps4 │ │ ├── circle.png │ │ ├── circle.png.import │ │ ├── cross.png │ │ ├── cross.png.import │ │ ├── diagram.png │ │ ├── diagram.png.import │ │ ├── diagram_simple.png │ │ ├── diagram_simple.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l1.png │ │ ├── l1.png.import │ │ ├── l2.png │ │ ├── l2.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── l_stick_click.png │ │ ├── l_stick_click.png.import │ │ ├── options.png │ │ ├── options.png.import │ │ ├── r1.png │ │ ├── r1.png.import │ │ ├── r2.png │ │ ├── r2.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── r_stick_click.png │ │ ├── r_stick_click.png.import │ │ ├── share.png │ │ ├── share.png.import │ │ ├── square.png │ │ ├── square.png.import │ │ ├── touch_pad.png │ │ ├── touch_pad.png.import │ │ ├── triangle.png │ │ └── triangle.png.import │ ├── ps5 │ │ ├── circle.png │ │ ├── circle.png.import │ │ ├── cross.png │ │ ├── cross.png.import │ │ ├── diagram.png │ │ ├── diagram.png.import │ │ ├── diagram_simple.png │ │ ├── diagram_simple.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l1.png │ │ ├── l1.png.import │ │ ├── l2.png │ │ ├── l2.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── l_stick_click.png │ │ ├── l_stick_click.png.import │ │ ├── microphone.png │ │ ├── microphone.png.import │ │ ├── options.png │ │ ├── options.png.import │ │ ├── options_alt.png │ │ ├── options_alt.png.import │ │ ├── r1.png │ │ ├── r1.png.import │ │ ├── r2.png │ │ ├── r2.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── r_stick_click.png │ │ ├── r_stick_click.png.import │ │ ├── share.png │ │ ├── share.png.import │ │ ├── share_alt.png │ │ ├── share_alt.png.import │ │ ├── square.png │ │ ├── square.png.import │ │ ├── touch_pad.png │ │ ├── touch_pad.png.import │ │ ├── triangle.png │ │ └── triangle.png.import │ ├── stadia │ │ ├── a.png │ │ ├── a.png.import │ │ ├── assistant.png │ │ ├── assistant.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── dots.png │ │ ├── dots.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l1.png │ │ ├── l1.png.import │ │ ├── l2.png │ │ ├── l2.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── menu.png │ │ ├── menu.png.import │ │ ├── r1.png │ │ ├── r1.png.import │ │ ├── r2.png │ │ ├── r2.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── select.png │ │ ├── select.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ └── y.png.import │ ├── steam │ │ ├── a.png │ │ ├── a.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── back.png │ │ ├── back.png.import │ │ ├── gyro.png │ │ ├── gyro.png.import │ │ ├── lb.png │ │ ├── lb.png.import │ │ ├── left_grip.png │ │ ├── left_grip.png.import │ │ ├── left_track.png │ │ ├── left_track.png.import │ │ ├── left_track_center.png │ │ ├── left_track_center.png.import │ │ ├── left_track_down.png │ │ ├── left_track_down.png.import │ │ ├── left_track_left.png │ │ ├── left_track_left.png.import │ │ ├── left_track_right.png │ │ ├── left_track_right.png.import │ │ ├── left_track_up.png │ │ ├── left_track_up.png.import │ │ ├── lt.png │ │ ├── lt.png.import │ │ ├── rb.png │ │ ├── rb.png.import │ │ ├── right_grip.png │ │ ├── right_grip.png.import │ │ ├── right_track.png │ │ ├── right_track.png.import │ │ ├── right_track_center.png │ │ ├── right_track_center.png.import │ │ ├── right_track_down.png │ │ ├── right_track_down.png.import │ │ ├── right_track_left.png │ │ ├── right_track_left.png.import │ │ ├── right_track_right.png │ │ ├── right_track_right.png.import │ │ ├── right_track_up.png │ │ ├── right_track_up.png.import │ │ ├── rt.png │ │ ├── rt.png.import │ │ ├── start.png │ │ ├── start.png.import │ │ ├── stick.png │ │ ├── stick.png.import │ │ ├── system.png │ │ ├── system.png.import │ │ ├── tilt_pitch.png │ │ ├── tilt_pitch.png.import │ │ ├── tilt_roll.png │ │ ├── tilt_roll.png.import │ │ ├── tilt_yaw.png │ │ ├── tilt_yaw.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ └── y.png.import │ ├── steamdeck │ │ ├── a.png │ │ ├── a.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── dots.png │ │ ├── dots.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── gyro.png │ │ ├── gyro.png.import │ │ ├── l1.png │ │ ├── l1.png.import │ │ ├── l2.png │ │ ├── l2.png.import │ │ ├── l4.png │ │ ├── l4.png.import │ │ ├── l5.png │ │ ├── l5.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── l_stick_click.png │ │ ├── l_stick_click.png.import │ │ ├── left_track.png │ │ ├── left_track.png.import │ │ ├── menu.png │ │ ├── menu.png.import │ │ ├── minus.png │ │ ├── minus.png.import │ │ ├── plus.png │ │ ├── plus.png.import │ │ ├── power.png │ │ ├── power.png.import │ │ ├── r1.png │ │ ├── r1.png.import │ │ ├── r2.png │ │ ├── r2.png.import │ │ ├── r4.png │ │ ├── r4.png.import │ │ ├── r5.png │ │ ├── r5.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── r_stick_click.png │ │ ├── r_stick_click.png.import │ │ ├── right_track.png │ │ ├── right_track.png.import │ │ ├── square.png │ │ ├── square.png.import │ │ ├── steam.png │ │ ├── steam.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ └── y.png.import │ ├── switch │ │ ├── a.png │ │ ├── a.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── controller_left.png │ │ ├── controller_left.png.import │ │ ├── controller_right.png │ │ ├── controller_right.png.import │ │ ├── controllers.png │ │ ├── controllers.png.import │ │ ├── controllers_separate.png │ │ ├── controllers_separate.png.import │ │ ├── down.png │ │ ├── down.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── home.png │ │ ├── home.png.import │ │ ├── l.png │ │ ├── l.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── left.png │ │ ├── left.png.import │ │ ├── minus.png │ │ ├── minus.png.import │ │ ├── plus.png │ │ ├── plus.png.import │ │ ├── r.png │ │ ├── r.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── right.png │ │ ├── right.png.import │ │ ├── square.png │ │ ├── square.png.import │ │ ├── up.png │ │ ├── up.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ ├── y.png.import │ │ ├── zl.png │ │ ├── zl.png.import │ │ ├── zr.png │ │ └── zr.png.import │ ├── xbox360 │ │ ├── a.png │ │ ├── a.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── back.png │ │ ├── back.png.import │ │ ├── back_alt.png │ │ ├── back_alt.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── l_stick_click.png │ │ ├── l_stick_click.png.import │ │ ├── lb.png │ │ ├── lb.png.import │ │ ├── lt.png │ │ ├── lt.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── r_stick_click.png │ │ ├── r_stick_click.png.import │ │ ├── rb.png │ │ ├── rb.png.import │ │ ├── rt.png │ │ ├── rt.png.import │ │ ├── start.png │ │ ├── start.png.import │ │ ├── start_alt.png │ │ ├── start_alt.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ └── y.png.import │ ├── xboxone │ │ ├── a.png │ │ ├── a.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── diagram.png │ │ ├── diagram.png.import │ │ ├── diagram_simple.png │ │ ├── diagram_simple.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── l_stick_click.png │ │ ├── l_stick_click.png.import │ │ ├── lb.png │ │ ├── lb.png.import │ │ ├── lt.png │ │ ├── lt.png.import │ │ ├── menu.png │ │ ├── menu.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── r_stick_click.png │ │ ├── r_stick_click.png.import │ │ ├── rb.png │ │ ├── rb.png.import │ │ ├── rt.png │ │ ├── rt.png.import │ │ ├── view.png │ │ ├── view.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ └── y.png.import │ └── xboxseries │ │ ├── a.png │ │ ├── a.png.import │ │ ├── b.png │ │ ├── b.png.import │ │ ├── diagram.png │ │ ├── diagram.png.import │ │ ├── diagram_simple.png │ │ ├── diagram_simple.png.import │ │ ├── dpad.png │ │ ├── dpad.png.import │ │ ├── dpad_down.png │ │ ├── dpad_down.png.import │ │ ├── dpad_left.png │ │ ├── dpad_left.png.import │ │ ├── dpad_right.png │ │ ├── dpad_right.png.import │ │ ├── dpad_up.png │ │ ├── dpad_up.png.import │ │ ├── l_stick.png │ │ ├── l_stick.png.import │ │ ├── l_stick_click.png │ │ ├── l_stick_click.png.import │ │ ├── lb.png │ │ ├── lb.png.import │ │ ├── lt.png │ │ ├── lt.png.import │ │ ├── menu.png │ │ ├── menu.png.import │ │ ├── r_stick.png │ │ ├── r_stick.png.import │ │ ├── r_stick_click.png │ │ ├── r_stick_click.png.import │ │ ├── rb.png │ │ ├── rb.png.import │ │ ├── rt.png │ │ ├── rt.png.import │ │ ├── share.png │ │ ├── share.png.import │ │ ├── view.png │ │ ├── view.png.import │ │ ├── x.png │ │ ├── x.png.import │ │ ├── y.png │ │ └── y.png.import │ ├── example │ ├── IconRemapper.gd │ ├── IconRemapper.gd.uid │ ├── IconRemapper.tscn │ └── IconTest.tscn │ ├── objects │ ├── Button.gd │ ├── Button.gd.uid │ ├── Sprite.gd │ ├── Sprite.gd.uid │ ├── Sprite3D.gd │ ├── Sprite3D.gd.uid │ ├── TextureRect.gd │ └── TextureRect.gd.uid │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ └── settings.tres ├── compatibilitytool.template ├── export_presets.cfg ├── luxtorpeda.gdextension ├── luxtorpeda.gdextension.uid ├── luxtorpeda.sh ├── post_build.rs ├── project.godot ├── shell.nix ├── src ├── .gdignore ├── client.rs ├── command.rs ├── config.rs ├── godot_logger.rs ├── lib.rs ├── package.rs ├── package_metadata.rs └── user_env.rs └── toolmanifest.vdf /.clippy.toml: -------------------------------------------------------------------------------- 1 | disallowed-names = ["foo", "bar", "baz"] 2 | cognitive-complexity-threshold = 30 3 | too-many-arguments-threshold = 12 4 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: d10sfan 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | contact_links: 2 | - name: Luxtorpeda Engines/Packages 3 | url: https://github.com/luxtorpeda-dev/packages/issues/new/choose 4 | about: Any issues with a luxtorpeda-dev engine, or a new engine/game request should be created here. 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "cargo" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | ignore: 8 | - dependency-name: "godot" 9 | - package-ecosystem: "github-actions" 10 | directory: "/" 11 | schedule: 12 | interval: "weekly" 13 | 14 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ### Luxtorpeda Client Submissions 4 | 5 | * [ ] Have you verified that the code changes in the pull request are related to only the items you wish to change? 6 | * [ ] Have you run the build locally and ensured the changes allowed you to launch and play the Steam game? 7 | * [ ] Have you ensured that there is not already a pull request or active feature for the one you are adding? 8 | -------------------------------------------------------------------------------- /.github/workflows/publish_readme.yml: -------------------------------------------------------------------------------- 1 | name: Publish README 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | paths: 7 | - 'README.md' 8 | 9 | jobs: 10 | deploy: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Checkout 14 | uses: actions/checkout@v4 15 | - name: Create README dir 16 | run: | 17 | mkdir readme-dir 18 | cp README.md ./readme-dir 19 | - name: Publish 20 | uses: peaceiris/actions-gh-pages@v4 21 | with: 22 | github_token: ${{ secrets.GITHUB_TOKEN }} 23 | deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} 24 | publish_dir: ./readme-dir 25 | keep_files: true 26 | external_repository: luxtorpeda-dev/luxtorpeda-dev.github.io 27 | publish_branch: master 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | luxtorpeda/ 4 | luxtorpeda.tar.xz 5 | 6 | # Godot-specific ignores 7 | .import/ 8 | export.cfg 9 | 10 | # Imported translations (automatically generated from CSV files) 11 | *.translation 12 | 13 | # Mono-specific ignores 14 | .mono/ 15 | data_*/ 16 | 17 | godot-build 18 | 19 | .godot 20 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## Changelog for luxtorpeda-dev 2 | 3 | * Changelogs can be seen on the releases page at https://github.com/luxtorpeda-dev/luxtorpeda/releases 4 | * Packages changelog can be seen at https://github.com/luxtorpeda-dev/packages/blob/master/CHANGELOG.md 5 | -------------------------------------------------------------------------------- /Resources/accept-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/Resources/accept-icon.png -------------------------------------------------------------------------------- /Resources/accept-icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://ssym04l8ewvi" 6 | path="res://.godot/imported/accept-icon.png-69f627260dde93047c7a6787700e41c3.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://Resources/accept-icon.png" 14 | dest_files=["res://.godot/imported/accept-icon.png-69f627260dde93047c7a6787700e41c3.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/Resources/icon.png -------------------------------------------------------------------------------- /Resources/icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dsdnxigm7aj1l" 6 | path="res://.godot/imported/icon.png-9a68011a69ba507a84f3ed52914801c7.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://Resources/icon.png" 14 | dest_files=["res://.godot/imported/icon.png-9a68011a69ba507a84f3ed52914801c7.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | The latest version (as specified in the releases for this repository) is always the supported version. 6 | 7 | ## Reporting a Vulnerability 8 | 9 | To report a vulnerability, use github's report function, or send an email to d10sfan+luxtorpeda@gmail.com with the necessary information. Maintainers will respond as soon as possible and resolution depends on how large the issue is. 10 | -------------------------------------------------------------------------------- /Scenes/Choices/Choices.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c5ke7g6xs2nfm 2 | -------------------------------------------------------------------------------- /Scenes/MainScene/Controls.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c1qx3r8mdk8m8 2 | -------------------------------------------------------------------------------- /Scenes/Progress/Progress.gd.uid: -------------------------------------------------------------------------------- 1 | uid://so1alxfx42b5 2 | -------------------------------------------------------------------------------- /Scenes/Progress/Progress.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=2 format=3 uid="uid://kl1iyl6xknhw"] 2 | 3 | [ext_resource type="Script" uid="uid://so1alxfx42b5" path="res://Scenes/Progress/Progress.gd" id="1"] 4 | 5 | [node name="Progress" type="VBoxContainer"] 6 | anchors_preset = 15 7 | anchor_right = 1.0 8 | anchor_bottom = 1.0 9 | size_flags_vertical = 3 10 | alignment = 1 11 | script = ExtResource("1") 12 | 13 | [node name="Label" type="Label" parent="."] 14 | layout_mode = 2 15 | horizontal_alignment = 1 16 | 17 | [node name="ProgressBar" type="ProgressBar" parent="."] 18 | visible = false 19 | layout_mode = 2 20 | step = 1.0 21 | 22 | [node name="ProgressLog" type="RichTextLabel" parent="."] 23 | visible = false 24 | layout_mode = 2 25 | size_flags_vertical = 3 26 | scroll_following = true 27 | -------------------------------------------------------------------------------- /Scenes/Prompt/Prompt.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d35csc7u0m16n 2 | -------------------------------------------------------------------------------- /Scenes/Prompt/Prompt.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=2 format=3 uid="uid://b1k4ekp8y8p7c"] 2 | 3 | [ext_resource type="Script" uid="uid://d35csc7u0m16n" path="res://Scenes/Prompt/Prompt.gd" id="1"] 4 | 5 | [node name="Prompt" type="VBoxContainer"] 6 | anchors_preset = 15 7 | anchor_right = 1.0 8 | anchor_bottom = 1.0 9 | script = ExtResource("1") 10 | 11 | [node name="PromptLabel" type="Label" parent="."] 12 | layout_mode = 2 13 | size_flags_vertical = 6 14 | horizontal_alignment = 1 15 | autowrap_mode = 3 16 | 17 | [node name="PromptRichText" type="RichTextLabel" parent="."] 18 | visible = false 19 | layout_mode = 2 20 | size_flags_horizontal = 3 21 | size_flags_vertical = 3 22 | 23 | [node name="TextEdit" type="TextEdit" parent="."] 24 | visible = false 25 | custom_minimum_size = Vector2(0, 40) 26 | layout_mode = 2 27 | 28 | [node name="Timer" type="Timer" parent="."] 29 | 30 | [connection signal="timeout" from="Timer" to="." method="_on_Timer_timeout"] 31 | -------------------------------------------------------------------------------- /Scenes/TitleBar/TitleBar.gd: -------------------------------------------------------------------------------- 1 | extends VBoxContainer 2 | 3 | # warning-ignore:unused_signal 4 | signal mode_changed 5 | 6 | # Called when the node enters the scene tree for the first time. 7 | func _ready(): 8 | # warning-ignore:return_value_discarded 9 | connect("mode_changed", Callable(self, "mode_changed_handler")) 10 | 11 | func mode_changed_handler(new_mode): 12 | var new_title = "" 13 | if new_mode == "progress": 14 | new_title = "Progress" 15 | elif new_mode == "choice": 16 | new_title = "Pick an engine below" 17 | elif new_mode == "error": 18 | new_title = "Error" 19 | else: 20 | new_title = new_mode 21 | 22 | if new_title: 23 | get_node("Label").text = new_title 24 | -------------------------------------------------------------------------------- /Scenes/TitleBar/TitleBar.gd.uid: -------------------------------------------------------------------------------- 1 | uid://epm270f7jj8y 2 | -------------------------------------------------------------------------------- /Scenes/TitleBar/TitleBar.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=2 format=3 uid="uid://dbac8bagk4vn6"] 2 | 3 | [ext_resource type="Script" uid="uid://epm270f7jj8y" path="res://Scenes/TitleBar/TitleBar.gd" id="1"] 4 | 5 | [node name="TitleBar" type="VBoxContainer"] 6 | anchors_preset = 15 7 | anchor_right = 1.0 8 | anchor_bottom = 1.0 9 | script = ExtResource("1") 10 | 11 | [node name="Label" type="Label" parent="."] 12 | custom_minimum_size = Vector2(0, 24) 13 | layout_mode = 2 14 | size_flags_horizontal = 3 15 | size_flags_vertical = 1 16 | horizontal_alignment = 1 17 | 18 | [node name="HSeparator" type="HSeparator" parent="."] 19 | layout_mode = 2 20 | -------------------------------------------------------------------------------- /addons/controller_icons/ControllerIcons.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bilhd27s3pahs 2 | -------------------------------------------------------------------------------- /addons/controller_icons/Mapper.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bqthn4w4vgjqt 2 | -------------------------------------------------------------------------------- /addons/controller_icons/Settings.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d36tqt0do70mo 2 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/disconnected.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/0.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/0.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dhwug5n7wvn8b" 6 | path="res://.godot/imported/0.png-5e4ef89ebfb88cf2281fb8519eae8326.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/0.png" 14 | dest_files=["res://.godot/imported/0.png-5e4ef89ebfb88cf2281fb8519eae8326.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cyvt6g1pkcqfo" 6 | path="res://.godot/imported/1.png-5e93042ff4733b49c5848a419f211dc0.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/1.png" 14 | dest_files=["res://.godot/imported/1.png-5e93042ff4733b49c5848a419f211dc0.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cp0j8cw8o6wvu" 6 | path="res://.godot/imported/2.png-cc45af4ba1a14d5c701d7eaf772cb60e.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/2.png" 14 | dest_files=["res://.godot/imported/2.png-cc45af4ba1a14d5c701d7eaf772cb60e.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/3.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/3.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://tljp3e67878n" 6 | path="res://.godot/imported/3.png-a28e3d1bcdb601b911e3d5e9aaaece29.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/3.png" 14 | dest_files=["res://.godot/imported/3.png-a28e3d1bcdb601b911e3d5e9aaaece29.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/4.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/4.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dvv0nf2te2dy8" 6 | path="res://.godot/imported/4.png-d6e77f4e27328a413d34506751d7e7d8.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/4.png" 14 | dest_files=["res://.godot/imported/4.png-d6e77f4e27328a413d34506751d7e7d8.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/5.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/5.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://co1b5kuqpipbi" 6 | path="res://.godot/imported/5.png-e3a211f712f0ba23f0383e633d91b292.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/5.png" 14 | dest_files=["res://.godot/imported/5.png-e3a211f712f0ba23f0383e633d91b292.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/6.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/6.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://b2mcylnx72rnc" 6 | path="res://.godot/imported/6.png-c94a4fdfe4780a6cd266a954fce863aa.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/6.png" 14 | dest_files=["res://.godot/imported/6.png-c94a4fdfe4780a6cd266a954fce863aa.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/7.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/7.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://346orodxqrwr" 6 | path="res://.godot/imported/7.png-2aed855c8db8718bbf613d3fe15e397f.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/7.png" 14 | dest_files=["res://.godot/imported/7.png-2aed855c8db8718bbf613d3fe15e397f.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/8.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/8.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bb0namehypd0v" 6 | path="res://.godot/imported/8.png-7347a4f63d0d4bf8e342c042e8a47b6a.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/8.png" 14 | dest_files=["res://.godot/imported/8.png-7347a4f63d0d4bf8e342c042e8a47b6a.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/9.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/9.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://b7hs1r61dhf8f" 6 | path="res://.godot/imported/9.png-92a5ba8724ec75cb0650a7e43ee7de1a.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/9.png" 14 | dest_files=["res://.godot/imported/9.png-92a5ba8724ec75cb0650a7e43ee7de1a.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/a.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bptg6u6b4y5no" 6 | path="res://.godot/imported/a.png-02614b596e2702a221a87d93abcfaa61.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/a.png" 14 | dest_files=["res://.godot/imported/a.png-02614b596e2702a221a87d93abcfaa61.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/alt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/alt.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cpld7e28w4q1e" 6 | path="res://.godot/imported/alt.png-2955b920d549ecae6d20f5b9d8b28316.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/alt.png" 14 | dest_files=["res://.godot/imported/alt.png-2955b920d549ecae6d20f5b9d8b28316.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/arrow_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/arrow_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/arrow_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/arrow_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/asterisk.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/b.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://canr2drixxw4k" 6 | path="res://.godot/imported/b.png-85e60076ce4df311fd6ce062c3953570.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/b.png" 14 | dest_files=["res://.godot/imported/b.png-85e60076ce4df311fd6ce062c3953570.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/backspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/backspace.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/backspace_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/backspace_alt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/bracket_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/bracket_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/bracket_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/bracket_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/c.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/c.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dvki5kbcq7qow" 6 | path="res://.godot/imported/c.png-60bc13862a491d6dad69b4db7006689e.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/c.png" 14 | dest_files=["res://.godot/imported/c.png-60bc13862a491d6dad69b4db7006689e.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/caps_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/caps_lock.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/command.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/ctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/ctrl.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/d.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/d.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dlwamiuq1f5t6" 6 | path="res://.godot/imported/d.png-b7721e67decc380fd57e07ee56e53953.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/d.png" 14 | dest_files=["res://.godot/imported/d.png-b7721e67decc380fd57e07ee56e53953.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/del.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/del.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dp71lwv4vjptf" 6 | path="res://.godot/imported/del.png-8ab1be2a4136e8f1ae7ec54f3a75f012.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/del.png" 14 | dest_files=["res://.godot/imported/del.png-8ab1be2a4136e8f1ae7ec54f3a75f012.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/e.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/e.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://xe4n818le3p8" 6 | path="res://.godot/imported/e.png-7ec0ba2ffb631b8cc6de42153f818779.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/e.png" 14 | dest_files=["res://.godot/imported/e.png-7ec0ba2ffb631b8cc6de42153f818779.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/end.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/end.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dd57lxd8nftr4" 6 | path="res://.godot/imported/end.png-19998f1c73319c0913db009ea41299f1.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/end.png" 14 | dest_files=["res://.godot/imported/end.png-19998f1c73319c0913db009ea41299f1.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/enter.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/enter_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/enter_alt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/enter_tall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/enter_tall.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/esc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/esc.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/esc.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cnghdqiitl0fu" 6 | path="res://.godot/imported/esc.png-4b899d8648d525a54c45ed98a86ba3b4.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/esc.png" 14 | dest_files=["res://.godot/imported/esc.png-4b899d8648d525a54c45ed98a86ba3b4.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://broeuieppu0ni" 6 | path="res://.godot/imported/f.png-4d9e36eeb537558291e4f3b623effc03.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f.png" 14 | dest_files=["res://.godot/imported/f.png-4d9e36eeb537558291e4f3b623effc03.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://b8no45t86rrn6" 6 | path="res://.godot/imported/f1.png-8f613f4af184fa81387a386622247ed5.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f1.png" 14 | dest_files=["res://.godot/imported/f1.png-8f613f4af184fa81387a386622247ed5.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f10.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f10.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://b76mxxjlj888w" 6 | path="res://.godot/imported/f10.png-b1122098f3284856b04da935979c6ee0.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f10.png" 14 | dest_files=["res://.godot/imported/f10.png-b1122098f3284856b04da935979c6ee0.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f11.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f11.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://ddrasm5hfo84n" 6 | path="res://.godot/imported/f11.png-4f8e9e1e7a5b11b030ecefea00294062.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f11.png" 14 | dest_files=["res://.godot/imported/f11.png-4f8e9e1e7a5b11b030ecefea00294062.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f12.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f12.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://x4212bmj350w" 6 | path="res://.godot/imported/f12.png-bcb2c9ea989874bc6203645641457c2a.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f12.png" 14 | dest_files=["res://.godot/imported/f12.png-bcb2c9ea989874bc6203645641457c2a.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cebpb6c42ooem" 6 | path="res://.godot/imported/f2.png-853f8d196971146dfe734d15d6a82681.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f2.png" 14 | dest_files=["res://.godot/imported/f2.png-853f8d196971146dfe734d15d6a82681.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f3.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f3.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://utdnqoybksrx" 6 | path="res://.godot/imported/f3.png-affa1c0616438ee1071023d1606aafe9.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f3.png" 14 | dest_files=["res://.godot/imported/f3.png-affa1c0616438ee1071023d1606aafe9.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f4.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f4.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://buv6pfavbw8ev" 6 | path="res://.godot/imported/f4.png-59ce134d8791cdbcd742e6d39d376ba1.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f4.png" 14 | dest_files=["res://.godot/imported/f4.png-59ce134d8791cdbcd742e6d39d376ba1.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f5.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f5.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://c4sj5uyseavix" 6 | path="res://.godot/imported/f5.png-8883dd1dee9b3466e722aa195bfbde96.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f5.png" 14 | dest_files=["res://.godot/imported/f5.png-8883dd1dee9b3466e722aa195bfbde96.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f6.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f6.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://des6ow7uojf1t" 6 | path="res://.godot/imported/f6.png-8151a1ab4564149919426cd89b55aef6.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f6.png" 14 | dest_files=["res://.godot/imported/f6.png-8151a1ab4564149919426cd89b55aef6.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f7.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f7.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dvrmkpuh2nx0m" 6 | path="res://.godot/imported/f7.png-03adff059dfd886a088628e7d7209813.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f7.png" 14 | dest_files=["res://.godot/imported/f7.png-03adff059dfd886a088628e7d7209813.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f8.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f8.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://32dhrb00iift" 6 | path="res://.godot/imported/f8.png-563ec719a0666065208473a70115781f.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f8.png" 14 | dest_files=["res://.godot/imported/f8.png-563ec719a0666065208473a70115781f.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/f9.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/f9.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://csk17ja7f6bm0" 6 | path="res://.godot/imported/f9.png-943e76712f8473b1183d5a8d345f1913.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/f9.png" 14 | dest_files=["res://.godot/imported/f9.png-943e76712f8473b1183d5a8d345f1913.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/g.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/g.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://xlplkwxxoohb" 6 | path="res://.godot/imported/g.png-14572568f63a7b23681641a02c662d04.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/g.png" 14 | dest_files=["res://.godot/imported/g.png-14572568f63a7b23681641a02c662d04.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/h.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/h.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://d3q6bvxmx7d2y" 6 | path="res://.godot/imported/h.png-cbfda01b136945b4d87b24e91d9912d6.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/h.png" 14 | dest_files=["res://.godot/imported/h.png-cbfda01b136945b4d87b24e91d9912d6.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/home.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/i.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/i.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cqd0jlt3rtk1" 6 | path="res://.godot/imported/i.png-7ea3745b1b8fbcbe2692879f2fe4be85.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/i.png" 14 | dest_files=["res://.godot/imported/i.png-7ea3745b1b8fbcbe2692879f2fe4be85.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/insert.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/j.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/j.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://btxmq4pjv74u2" 6 | path="res://.godot/imported/j.png-78fde95f9bb9cd69a6d1e8138358ce33.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/j.png" 14 | dest_files=["res://.godot/imported/j.png-78fde95f9bb9cd69a6d1e8138358ce33.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/k.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/k.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bwrnqsbonca4k" 6 | path="res://.godot/imported/k.png-bfe3441a49bc1e9efad9a20088127d99.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/k.png" 14 | dest_files=["res://.godot/imported/k.png-bfe3441a49bc1e9efad9a20088127d99.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/l.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/l.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://br8kxbo504vtr" 6 | path="res://.godot/imported/l.png-e5c72a0134479c7f082bb92ed54e319c.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/l.png" 14 | dest_files=["res://.godot/imported/l.png-e5c72a0134479c7f082bb92ed54e319c.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/m.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/m.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://w0ybnkclhpu5" 6 | path="res://.godot/imported/m.png-87b633c83926fbc3c83ab6d55dda9b7c.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/m.png" 14 | dest_files=["res://.godot/imported/m.png-87b633c83926fbc3c83ab6d55dda9b7c.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/mark_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/mark_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/mark_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/mark_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/minus.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/n.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/n.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://qm08rt7v0jmi" 6 | path="res://.godot/imported/n.png-2b143bdd3bfea413b560d4f610f909c9.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/n.png" 14 | dest_files=["res://.godot/imported/n.png-2b143bdd3bfea413b560d4f610f909c9.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/num_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/num_lock.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/o.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/o.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://ra467stypt61" 6 | path="res://.godot/imported/o.png-ebca633629770ba1e7a8ef37bcc47d6e.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/o.png" 14 | dest_files=["res://.godot/imported/o.png-ebca633629770ba1e7a8ef37bcc47d6e.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/p.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/p.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://c8t6nj5nejist" 6 | path="res://.godot/imported/p.png-fe6d5088b82cf26ee9105323c97e8ec0.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/p.png" 14 | dest_files=["res://.godot/imported/p.png-fe6d5088b82cf26ee9105323c97e8ec0.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/page_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/page_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/page_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/page_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/plus.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/plus_tall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/plus_tall.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/print_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/print_screen.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/q.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/q.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dim5mk7g4q043" 6 | path="res://.godot/imported/q.png-6ef53dece2e535e76ac4b6715c53b010.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/q.png" 14 | dest_files=["res://.godot/imported/q.png-6ef53dece2e535e76ac4b6715c53b010.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/question.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/quote.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/r.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/r.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://xrv28lvm1ix6" 6 | path="res://.godot/imported/r.png-c853d4227496df13556499c7e96ba025.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/r.png" 14 | dest_files=["res://.godot/imported/r.png-c853d4227496df13556499c7e96ba025.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/s.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/s.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://db6nbed6w2fis" 6 | path="res://.godot/imported/s.png-8ba01e8981caec742feea41c5c9382ab.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/s.png" 14 | dest_files=["res://.godot/imported/s.png-8ba01e8981caec742feea41c5c9382ab.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/semicolon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/semicolon.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/shift.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/shift_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/shift_alt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/slash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/slash.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/space.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/t.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/t.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dky25m6echo0u" 6 | path="res://.godot/imported/t.png-70d394cdcf8270daedd4789ad431faf2.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/t.png" 14 | dest_files=["res://.godot/imported/t.png-70d394cdcf8270daedd4789ad431faf2.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/tab.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/tab.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://ebn2rv8q28py" 6 | path="res://.godot/imported/tab.png-22eec37122d05e9322480e85af4a45fc.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/tab.png" 14 | dest_files=["res://.godot/imported/tab.png-22eec37122d05e9322480e85af4a45fc.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/tilda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/tilda.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/u.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/u.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dnbttdim7vc" 6 | path="res://.godot/imported/u.png-3564c3693205b4e84d15f34f8fa09789.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/u.png" 14 | dest_files=["res://.godot/imported/u.png-3564c3693205b4e84d15f34f8fa09789.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/v.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/v.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dolof3o252oex" 6 | path="res://.godot/imported/v.png-a2d45ee9b83f5d8e486139cae4520f4a.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/v.png" 14 | dest_files=["res://.godot/imported/v.png-a2d45ee9b83f5d8e486139cae4520f4a.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/w.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/w.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://casmdw1resubx" 6 | path="res://.godot/imported/w.png-ed3cd4592010c75b8d884d9d08803a21.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/w.png" 14 | dest_files=["res://.godot/imported/w.png-ed3cd4592010c75b8d884d9d08803a21.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/win.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/win.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://d2cj2f4jlkxwn" 6 | path="res://.godot/imported/win.png-7991b99458c774d8f357ef921343498f.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/win.png" 14 | dest_files=["res://.godot/imported/win.png-7991b99458c774d8f357ef921343498f.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/x.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://nil8w83cyn1m" 6 | path="res://.godot/imported/x.png-f920649f251a4dcf50f6adb4b7dca48a.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/x.png" 14 | dest_files=["res://.godot/imported/x.png-f920649f251a4dcf50f6adb4b7dca48a.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/y.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://0547xmgu17np" 6 | path="res://.godot/imported/y.png-64308a7952fca02f2ced96ef86b055d8.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/y.png" 14 | dest_files=["res://.godot/imported/y.png-64308a7952fca02f2ced96ef86b055d8.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/key/z.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/key/z.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dvu4qvrwgslv3" 6 | path="res://.godot/imported/z.png-db05dce79d25a20ba57100ebae2f198b.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/key/z.png" 14 | dest_files=["res://.godot/imported/z.png-db05dce79d25a20ba57100ebae2f198b.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/a.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://rn6k4m7fogon" 6 | path="res://.godot/imported/a.png-59a62f9f6a6a0a2af64c8d88e34a5401.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/luna/a.png" 14 | dest_files=["res://.godot/imported/a.png-59a62f9f6a6a0a2af64c8d88e34a5401.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/b.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://brx8jkm3n4sud" 6 | path="res://.godot/imported/b.png-1ae64f3087efcc70a69cd9d33882dce4.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/luna/b.png" 14 | dest_files=["res://.godot/imported/b.png-1ae64f3087efcc70a69cd9d33882dce4.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/circle.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/diagram.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/diagram_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/diagram_simple.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/l_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/l_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/lb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/lb.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bupy3dxhyn86p" 6 | path="res://.godot/imported/lb.png-3c96db6e020bba08a50a0ebd9fe8e731.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/luna/lb.png" 14 | dest_files=["res://.godot/imported/lb.png-3c96db6e020bba08a50a0ebd9fe8e731.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/lt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/lt.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://nxnpwylabu3e" 6 | path="res://.godot/imported/lt.png-2cdb294c39e41ed6afc2addf04863726.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/luna/lt.png" 14 | dest_files=["res://.godot/imported/lt.png-2cdb294c39e41ed6afc2addf04863726.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/menu.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/microphone.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/r_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/r_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/rb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/rb.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cidn3sefbrnnf" 6 | path="res://.godot/imported/rb.png-c7ea937fbeb3328ee9e0f2779a5f7450.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/luna/rb.png" 14 | dest_files=["res://.godot/imported/rb.png-c7ea937fbeb3328ee9e0f2779a5f7450.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/rt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/rt.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cagq7na0dq2hc" 6 | path="res://.godot/imported/rt.png-317167a9c4de6aeaf4313c55cae3cb71.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/luna/rt.png" 14 | dest_files=["res://.godot/imported/rt.png-317167a9c4de6aeaf4313c55cae3cb71.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/x.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bdaab4yfsklp5" 6 | path="res://.godot/imported/x.png-f47dc752ce8b528de61a09789677ef87.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/luna/x.png" 14 | dest_files=["res://.godot/imported/x.png-f47dc752ce8b528de61a09789677ef87.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/luna/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/luna/y.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://c1i21xnegic87" 6 | path="res://.godot/imported/y.png-b4f0d57293966dde5b58789c67559fd2.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/luna/y.png" 14 | dest_files=["res://.godot/imported/y.png-b4f0d57293966dde5b58789c67559fd2.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/mouse/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/mouse/left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/mouse/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/mouse/middle.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/mouse/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/mouse/right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/mouse/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/mouse/simple.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/a.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cvbc2l1ygkits" 6 | path="res://.godot/imported/a.png-29eecb9631be3f2d922f22d192491112.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ouya/a.png" 14 | dest_files=["res://.godot/imported/a.png-29eecb9631be3f2d922f22d192491112.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/l1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/l1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://oll7c7kiudqg" 6 | path="res://.godot/imported/l1.png-40be426ff0b63ac71a387da3194167e8.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ouya/l1.png" 14 | dest_files=["res://.godot/imported/l1.png-40be426ff0b63ac71a387da3194167e8.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/l2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/l2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://ckthgirocj4ye" 6 | path="res://.godot/imported/l2.png-4ccae94ce7c12e37b2621a33b6e321e6.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ouya/l2.png" 14 | dest_files=["res://.godot/imported/l2.png-4ccae94ce7c12e37b2621a33b6e321e6.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/menu.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/o.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/o.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://btb2inju0rhw4" 6 | path="res://.godot/imported/o.png-5860511e81509fe5f2c91ae353e00a58.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ouya/o.png" 14 | dest_files=["res://.godot/imported/o.png-5860511e81509fe5f2c91ae353e00a58.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/r1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/r1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bwchef4k1lkhv" 6 | path="res://.godot/imported/r1.png-2f981ba18f14037d054db9e0a74904f5.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ouya/r1.png" 14 | dest_files=["res://.godot/imported/r1.png-2f981ba18f14037d054db9e0a74904f5.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/r2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/r2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://ckuwwjnc4n0ty" 6 | path="res://.godot/imported/r2.png-5547939bd008bff4345aab8e7d1e50fc.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ouya/r2.png" 14 | dest_files=["res://.godot/imported/r2.png-5547939bd008bff4345aab8e7d1e50fc.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/touch.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/u.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/u.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bxom1daxf3rkv" 6 | path="res://.godot/imported/u.png-599d0e95eb0d2f2937ff55a5a246fb0f.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ouya/u.png" 14 | dest_files=["res://.godot/imported/u.png-599d0e95eb0d2f2937ff55a5a246fb0f.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ouya/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ouya/y.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dfu8cthd37ls6" 6 | path="res://.godot/imported/y.png-5d0ac3a56f44813490c7f2c4bfb2a86b.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ouya/y.png" 14 | dest_files=["res://.godot/imported/y.png-5d0ac3a56f44813490c7f2c4bfb2a86b.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/positional/east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/positional/east.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/positional/north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/positional/north.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/positional/south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/positional/south.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/positional/west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/positional/west.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/circle.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/cross.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/l1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/l1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dap2udggtn0ap" 6 | path="res://.godot/imported/l1.png-dfeafeae6ba7ae1b62c84a1f737135c8.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps3/l1.png" 14 | dest_files=["res://.godot/imported/l1.png-dfeafeae6ba7ae1b62c84a1f737135c8.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/l2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/l2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://byqc7vuhgliui" 6 | path="res://.godot/imported/l2.png-49cf84f948da7cf4a5ca5167681ae3d5.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps3/l2.png" 14 | dest_files=["res://.godot/imported/l2.png-49cf84f948da7cf4a5ca5167681ae3d5.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/l_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/l_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/r1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/r1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://c4kphw2308ie8" 6 | path="res://.godot/imported/r1.png-336215df5c25fad438a516b20a7e7b24.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps3/r1.png" 14 | dest_files=["res://.godot/imported/r1.png-336215df5c25fad438a516b20a7e7b24.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/r2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/r2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://d3jlrd2rc72r4" 6 | path="res://.godot/imported/r2.png-9cd8110714aedc5d2a3dfc1ffdff8c02.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps3/r2.png" 14 | dest_files=["res://.godot/imported/r2.png-9cd8110714aedc5d2a3dfc1ffdff8c02.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/r_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/r_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/select.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/square.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/start.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps3/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps3/triangle.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/circle.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/cross.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/diagram.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/diagram_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/diagram_simple.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/l1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/l1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bx646jls6fotu" 6 | path="res://.godot/imported/l1.png-95ac4b86b63cb6d6063d04c34423e038.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps4/l1.png" 14 | dest_files=["res://.godot/imported/l1.png-95ac4b86b63cb6d6063d04c34423e038.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/l2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/l2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://c6430g8j7ft6t" 6 | path="res://.godot/imported/l2.png-4dcb2ad01f6cbc33aa48ee09f5756380.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps4/l2.png" 14 | dest_files=["res://.godot/imported/l2.png-4dcb2ad01f6cbc33aa48ee09f5756380.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/l_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/l_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/options.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/r1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/r1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://bs7lcrl1jinbj" 6 | path="res://.godot/imported/r1.png-b2cc33e4d5182caa83ca9d0b07abef24.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps4/r1.png" 14 | dest_files=["res://.godot/imported/r1.png-b2cc33e4d5182caa83ca9d0b07abef24.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/r2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/r2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dogjufp4vxrnq" 6 | path="res://.godot/imported/r2.png-0f2740d264d9152a0d962dc06d3c7e12.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps4/r2.png" 14 | dest_files=["res://.godot/imported/r2.png-0f2740d264d9152a0d962dc06d3c7e12.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/r_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/r_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/share.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/square.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/touch_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/touch_pad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps4/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps4/triangle.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/circle.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/cross.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/diagram.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/diagram_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/diagram_simple.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/l1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/l1.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://cptsbtql4gq7f" 6 | path="res://.godot/imported/l1.png-1dbab572c17a5f38e671c2db53d5037e.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps5/l1.png" 14 | dest_files=["res://.godot/imported/l1.png-1dbab572c17a5f38e671c2db53d5037e.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/l2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/l2.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="CompressedTexture2D" 5 | uid="uid://dr554tkwtvx7d" 6 | path="res://.godot/imported/l2.png-e8cc4c0283c6b3b54d63e008d0690aa6.ctex" 7 | metadata={ 8 | "vram_texture": false 9 | } 10 | 11 | [deps] 12 | 13 | source_file="res://addons/controller_icons/assets/ps5/l2.png" 14 | dest_files=["res://.godot/imported/l2.png-e8cc4c0283c6b3b54d63e008d0690aa6.ctex"] 15 | 16 | [params] 17 | 18 | compress/mode=0 19 | compress/high_quality=false 20 | compress/lossy_quality=0.7 21 | compress/hdr_compression=1 22 | compress/normal_map=0 23 | compress/channel_pack=0 24 | mipmaps/generate=false 25 | mipmaps/limit=-1 26 | roughness/mode=0 27 | roughness/src_normal="" 28 | process/fix_alpha_border=true 29 | process/premult_alpha=false 30 | process/normal_map_invert_y=false 31 | process/hdr_as_srgb=false 32 | process/hdr_clamp_exposure=false 33 | process/size_limit=0 34 | detect_3d/compress_to=1 35 | -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/l_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/l_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/microphone.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/options.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/options_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/options_alt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/r1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/r2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/r_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/r_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/share.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/share_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/share_alt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/square.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/touch_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/touch_pad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/ps5/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/ps5/triangle.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/assistant.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/dots.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/l1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/l2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/menu.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/r1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/r2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/select.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/stadia/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/stadia/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/back.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/gyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/gyro.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/lb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/left_grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/left_grip.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/left_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/left_track.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/left_track_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/left_track_center.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/left_track_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/left_track_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/left_track_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/left_track_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/left_track_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/left_track_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/left_track_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/left_track_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/lt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/rb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/right_grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/right_grip.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/right_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/right_track.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/right_track_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/right_track_center.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/right_track_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/right_track_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/right_track_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/right_track_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/right_track_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/right_track_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/right_track_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/right_track_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/rt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/start.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/system.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/tilt_pitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/tilt_pitch.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/tilt_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/tilt_roll.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/tilt_yaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/tilt_yaw.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steam/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steam/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/dots.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/gyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/gyro.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/l1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/l2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/l2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/l4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/l4.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/l5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/l5.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/l_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/l_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/left_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/left_track.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/menu.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/minus.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/plus.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/power.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/r1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/r1.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/r2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/r2.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/r4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/r4.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/r5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/r5.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/r_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/r_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/right_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/right_track.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/square.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/steam.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/steamdeck/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/steamdeck/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/controller_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/controller_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/controller_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/controller_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/controllers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/controllers.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/controllers_separate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/controllers_separate.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/home.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/l.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/minus.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/plus.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/r.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/square.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/zl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/zl.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/switch/zr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/switch/zr.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/back.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/back_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/back_alt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/l_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/l_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/lb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/lt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/r_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/r_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/rb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/rt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/start.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/start_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/start_alt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xbox360/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xbox360/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/diagram.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/diagram_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/diagram_simple.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/l_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/l_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/lb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/lt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/menu.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/r_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/r_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/rb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/rt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/view.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxone/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxone/y.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/a.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/b.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/diagram.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/diagram_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/diagram_simple.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/dpad.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/dpad_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/dpad_down.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/dpad_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/dpad_left.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/dpad_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/dpad_right.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/dpad_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/dpad_up.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/l_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/l_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/l_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/l_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/lb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/lt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/menu.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/r_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/r_stick.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/r_stick_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/r_stick_click.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/rb.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/rt.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/share.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/view.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/x.png -------------------------------------------------------------------------------- /addons/controller_icons/assets/xboxseries/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luxtorpeda-dev/luxtorpeda/1669bb3fe40cbaf31f01cda70570b16599ee6b47/addons/controller_icons/assets/xboxseries/y.png -------------------------------------------------------------------------------- /addons/controller_icons/example/IconRemapper.gd.uid: -------------------------------------------------------------------------------- 1 | uid://tem7wwfphj15 2 | -------------------------------------------------------------------------------- /addons/controller_icons/objects/Button.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bipq3r7cvwx40 2 | -------------------------------------------------------------------------------- /addons/controller_icons/objects/Sprite.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bosb4vsjil80h 2 | -------------------------------------------------------------------------------- /addons/controller_icons/objects/Sprite3D.gd.uid: -------------------------------------------------------------------------------- 1 | uid://wgt0pemdodb4 2 | -------------------------------------------------------------------------------- /addons/controller_icons/objects/TextureRect.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bhik7oyxj5k3k 2 | -------------------------------------------------------------------------------- /addons/controller_icons/plugin.cfg: -------------------------------------------------------------------------------- 1 | [plugin] 2 | 3 | name="Controller Icons" 4 | description="Provides icons for all major controllers and keyboard, with automatic icon remapping." 5 | author="rsubtil" 6 | version="2.0.0" 7 | script="plugin.gd" 8 | -------------------------------------------------------------------------------- /addons/controller_icons/plugin.gd: -------------------------------------------------------------------------------- 1 | @tool 2 | extends EditorPlugin 3 | 4 | func _enter_tree(): 5 | add_autoload_singleton("ControllerIcons", "res://addons/controller_icons/ControllerIcons.gd") 6 | 7 | func _exit_tree(): 8 | remove_autoload_singleton("ControllerIcons") 9 | -------------------------------------------------------------------------------- /addons/controller_icons/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3ghrbrlxjk2v 2 | -------------------------------------------------------------------------------- /addons/controller_icons/settings.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Resource" script_class="ControllerSettings" load_steps=2 format=3 uid="uid://dolsrvh5w47et"] 2 | 3 | [ext_resource type="Script" uid="uid://d36tqt0do70mo" path="res://addons/controller_icons/Settings.gd" id="1"] 4 | 5 | [resource] 6 | script = ExtResource("1") 7 | joypad_fallback = 9 8 | joypad_deadzone = 0.5 9 | allow_mouse_remap = true 10 | mouse_min_movement = 200 11 | custom_asset_dir = "res://resources" 12 | -------------------------------------------------------------------------------- /compatibilitytool.template: -------------------------------------------------------------------------------- 1 | "compatibilitytools" 2 | { 3 | "compat_tools" 4 | { 5 | "%name%" // Internal name of this tool 6 | { 7 | "install_path" "." 8 | "display_name" "%display_name%" 9 | "from_oslist" "windows" 10 | "to_oslist" "linux" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /luxtorpeda.gdextension: -------------------------------------------------------------------------------- 1 | [configuration] 2 | entry_symbol = "gdext_rust_init" 3 | compatibility_minimum = 4.1 4 | 5 | [libraries] 6 | linux.debug.x86_64 = "res://target/debug/libluxtorpeda.so" 7 | linux.release.x86_64 = "res://target/release/libluxtorpeda.so" 8 | -------------------------------------------------------------------------------- /luxtorpeda.gdextension.uid: -------------------------------------------------------------------------------- 1 | uid://c6c73mji2q20n 2 | -------------------------------------------------------------------------------- /luxtorpeda.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ ! -z "${LD_PRELOAD}" ]]; then 4 | echo "LD_PRELOAD found with $LD_PRELOAD" 5 | export ORIGINAL_LD_PRELOAD="$LD_PRELOAD" 6 | export LD_PRELOAD="" 7 | fi 8 | 9 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" 10 | 11 | if [[ $2 == *"iscriptevaluator.exe"* ]]; then 12 | echo "ignoring iscriptevaluator.exe" 13 | exit 0 14 | fi 15 | 16 | if [ -z "$SteamAppId" ]; then 17 | echo "lux - Exiting because no steam app id" 18 | exit 0 19 | fi 20 | 21 | "$DIR/luxtorpeda.x86_64" "$@" 22 | -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- 1 | { pkgs ? import {} }: 2 | 3 | with pkgs; 4 | 5 | mkShell { 6 | buildInputs = [ 7 | rustc 8 | cargo 9 | SDL2 10 | SDL2_image 11 | 12 | # Coding tools 13 | rls 14 | rustfmt 15 | ]; 16 | } 17 | 18 | -------------------------------------------------------------------------------- /src/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | use godot::prelude::*; 2 | 3 | mod client; 4 | mod command; 5 | mod config; 6 | mod godot_logger; 7 | mod package; 8 | mod package_metadata; 9 | mod user_env; 10 | 11 | struct Luxtorpeda; 12 | 13 | #[gdextension] 14 | unsafe impl ExtensionLibrary for Luxtorpeda {} 15 | -------------------------------------------------------------------------------- /toolmanifest.vdf: -------------------------------------------------------------------------------- 1 | "manifest" 2 | { 3 | "version" "2" 4 | "commandline" "/luxtorpeda.sh %verb%" 5 | "require_tool_appid" "1628350" 6 | "use_sessions" "1" 7 | } 8 | --------------------------------------------------------------------------------