mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp
synced 2026-07-11 15:29:05 -04:00
Implemented warp debug menu feature
This commit is contained in:
@@ -62,7 +62,7 @@
|
||||
<div>Debug</div>
|
||||
<div class="tab__indicator"></div>
|
||||
</tab>
|
||||
<panel class="config" >
|
||||
<panel class="config" data-model="debug_model">
|
||||
<template src="config-menu__debug" />
|
||||
</panel>
|
||||
</tabset>
|
||||
|
||||
@@ -11,36 +11,27 @@
|
||||
class="config-debug-option__label"
|
||||
>Warp</label>
|
||||
<div class="config-debug__option-controls">
|
||||
<label class="config-debug__select-wrapper">
|
||||
<div class="config-debug__select-wrapper">
|
||||
<div class="config-debug__select-label"><div>Region</div></div>
|
||||
<select>
|
||||
<option selected>First</option>
|
||||
<option>Second</option>
|
||||
<option>Third</option>
|
||||
<option>Fourth</option>
|
||||
<select data-value="area_index" onchange="area_index_changed">
|
||||
<option data-for="area, i : area_names" data-attr-value="i">{{area}}</option>
|
||||
</select>
|
||||
</label>
|
||||
<label class="config-debug__select-wrapper">
|
||||
</div>
|
||||
<div class="config-debug__select-wrapper">
|
||||
<div class="config-debug__select-label"><div>Scene</div></div>
|
||||
<select>
|
||||
<option selected>First</option>
|
||||
<option>Second</option>
|
||||
<option>Third</option>
|
||||
<option>Fourth</option>
|
||||
<select data-value="scene_index" onchange="scene_index_changed">
|
||||
<option data-for="scene, i : scene_names" data-attr-value="i">{{scene}}</option>
|
||||
</select>
|
||||
</label>
|
||||
<label class="config-debug__select-wrapper">
|
||||
</div>
|
||||
<div class="config-debug__select-wrapper">
|
||||
<div class="config-debug__select-label"><div>Entrance</div></div>
|
||||
<select>
|
||||
<option>First</option>
|
||||
<option>Second</option>
|
||||
<option>Third</option>
|
||||
<option>Fourth</option>
|
||||
<select data-value="entrance_index">
|
||||
<option data-for="entrance, i : entrance_names" data-attr-value="i">{{entrance}}</option>
|
||||
</select>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<button
|
||||
class="icon-button icon-button--success"
|
||||
class="icon-button icon-button--success" onclick="do_warp"
|
||||
>
|
||||
<svg src="icons/Arrow.svg" />
|
||||
</button>
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
@@ -88,6 +88,7 @@
|
||||
|
||||
select {
|
||||
@extend %body;
|
||||
@extend %nav-all;
|
||||
@include trans-colors-border;
|
||||
@include border($color-white-a50);
|
||||
display: block;
|
||||
@@ -121,6 +122,7 @@
|
||||
border-radius: $border-radius-md;
|
||||
|
||||
option {
|
||||
@extend %nav-all;
|
||||
@include trans-colors;
|
||||
padding: space(8) space(12);
|
||||
background-color: $color-transparent;
|
||||
|
||||
Reference in New Issue
Block a user