Pop_Slime
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-27 16:54:30 +08:00
130896df1f Fix SkinSelectors.ToString. (2)
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-27 16:41:44 +08:00
5d5c519a1d Remove dynamic judge anchors. (Amend)
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-27 16:06:00 +08:00
3d1a11f78b Remove dynamic judge anchors. Add judge time properties.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-27 16:03:31 +08:00
cc985844cd Optimize GC for identifier and beat time property source.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-27 15:31:54 +08:00
feffbaa5a6 Refactor SkinPropertyKey.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-27 15:28:25 +08:00
d0f0c8ce6d Fix SkinSelectors.ToString.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-27 15:24:53 +08:00
3fdc236b1d Fix EmptyBinder not identifying inheritance.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-26 18:12:28 +08:00
46870e163a Code cleanup.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-26 16:52:09 +08:00
601f64cc61 Introduce no GC string formatter to optimize score string formatting.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-26 16:48:00 +08:00
c015b60dc3 Code cleanup.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-26 16:46:49 +08:00
5e01b654bd Optimize GC for enumerating TargetString.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-24 23:10:57 +08:00
2304257201 Add exception description on PDT parsing error.
Pop_Slime pushed to master at Pop_Slime/crtr 2023-01-22 22:29:21 +08:00
02794d88b9 Fix config scene stuck on ruleset format error.
Pop_Slime pushed tag 0.5.2 to Pop_Slime/crtr 2023-01-21 22:04:02 +08:00
Pop_Slime commented on issue Pop_Slime/crtr#9 2023-01-21 20:37:04 +08:00
[Skin] State selector

Deprecation Proposed

Can be replaced with property selector.

Pop_Slime commented on issue Pop_Slime/crtr#11 2023-01-21 20:35:17 +08:00
[Skin] Cutoff

Draft

  • Example primary judge: head
  • Example secondary judge for miss: j_miss
  • Example component: polysec

Cut at hit timing

@if .judge_head {
	@if > !is(?judge_result,…
Pop_Slime closed issue Pop_Slime/crtr#8 2023-01-21 20:29:39 +08:00
[Ruleset] Read and write scope
Pop_Slime commented on issue Pop_Slime/crtr#8 2023-01-21 20:29:39 +08:00
[Ruleset] Read and write scope

Solution

Example selector: .judge_head, ..jtrel_head.

Read scope

@if .judge_head { }

Write scope

(not practical yet)

@then ..jtrel_head { }
Pop_Slime pushed tag 0.5.1 to Pop_Slime/crtr 2023-01-21 20:23:32 +08:00
Pop_Slime commented on issue Pop_Slime/crtr#12 2023-01-21 20:22:34 +08:00
[Skin] Judge anchor

Solution

Example judge name: head.

Static judge anchor

.judge_head { }

Dynamic judge anchor

.jtabs_head { }
.jtrel_head { }

Judge…