You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
utils.Tooltip("The positional guidelines normally extend from the target's centre point out to the size of their hitbox. This allows you to make them longer or shorter.");
utils.Tooltip("How wide/thick do you want the lines to be?");
275
274
276
-
changed|=ImGui.SliderScalar("Outer circle range",ImGuiDataType.U16,ptrs[4],this.minOuterCircleRangePtr,this.maxOuterCircleRangePtr,"%i",ImGuiSliderFlags.AlwaysClamp);
275
+
changed|=ImGui.SliderScalar("Outer circle range",ImGuiDataType.U16,refptrs[4],this.minOuterCircleRangePtr,this.maxOuterCircleRangePtr,"%i",ImGuiSliderFlags.AlwaysClamp);
277
276
utils.Tooltip("How big should the outer circle be?"
278
277
+"\n"
279
278
+"\nValue is an offset to the target circle, and a value of 10 corresponds to 1 yalm."
@@ -282,12 +281,12 @@ public override void Draw() {
282
281
// sliders specifically to control the tether line length
changed|=ImGui.SliderScalar("Tether inner max length",ImGuiDataType.S16,ptrs[5],this.negativeOnePtr,this.maxTetherLengthPtr,"%i",ImGuiSliderFlags.AlwaysClamp);
284
+
changed|=ImGui.SliderScalar("Tether inner max length",ImGuiDataType.S16,refptrs[5],this.negativeOnePtr,this.maxTetherLengthPtr,"%i",ImGuiSliderFlags.AlwaysClamp);
286
285
utils.Tooltip("The inner tether will never extend beyond the centre of the target's hitbox."
287
286
+"\n"
288
287
+"\nSet to -1 to always go to the centre of the target's hitbox.");
289
288
290
-
changed|=ImGui.SliderScalar("Tether outer max length",ImGuiDataType.S16,ptrs[6],this.negativeTwoPtr,this.maxTetherLengthPtr,"%i",ImGuiSliderFlags.AlwaysClamp);
289
+
changed|=ImGui.SliderScalar("Tether outer max length",ImGuiDataType.S16,refptrs[6],this.negativeTwoPtr,this.maxTetherLengthPtr,"%i",ImGuiSliderFlags.AlwaysClamp);
291
290
utils.Tooltip("The outer tether CAN extend beyond your hitbox."
292
291
+"\n"
293
292
+"\nSet to -1 to always go to the centre of the your hitbox."
0 commit comments