Praytic

Results 9 comments of Praytic

If someone also experiencing the same issue here's the temporary fix. You can put the `@JsonView` annotation on every method's parameter. ``` @JsonCreator public Obj(@JsonProperty("a") String a, @JsonProperty("b") @JsonView(View1.class) String...

Hi @darrachequesne , I have read the documentation for the `SearchBuilder`, but I'm still not completely sure how it should be applied on the server-side. Could you give some hints?

I have an idea of creating multiple `enum`s which are mapped to specific `CriteriaBuilder` methods. Do you think it will be a good design decision?

For example: ```java @Data @NoArgsConstructor @AllArgsConstructor public static class Criteria { private Condition condition; private String data; private String origData; private String type; private List value; private String logic; private...

I don't see Editor implementation in this repository. Do you mean that it should be implemented first?

I think, as a part of this effort, `@JsonPropertyDescription` annotation can also be taken into the account.

I'm experiencing slightly different behavior with the dragged item now: 1. Click on an item in stash 2. It shows this big icon of the item 3. When I start...

It is usually not allowed in any game to "preview" a tower if you can't afford it. This mechanic can confuse new players. Typically, when you press the tower icon,...

Should be fixed when this PR is merged and released. https://github.com/godotengine/godot/pull/85939