!Awful

Results 19 comments of !Awful

Top right corner of the bookmark box should have a pencil icon and an X icon for editing and deleting. Could only appear on hover.

Long press can open the options on mobile

Forked to https://github.com/imizaac/react-cursor-position

@bitdom8 Are you still experiencing an issue?

I'd be a fan of the project using more ubiquitous communication platforms. Like discord. It isn't a perfect platform, but it is where people are. Asking people to go out...

Is this issue still present?

# Dictionary | Godot Method | Rust Method | |-|-| | `clear()` -> `void` (mutates) | `clear(&mut self)` | | `duplicate(deep: bool)` -> `Dictionary` | `duplicate_deep()` -> `Dictionary` `duplicate_shallow()` ->...

# Array | Godot Method | Rust Method | |-|-| | `array[i]` -> `?` | `get(index:usize)` -> `T` | | `array[i]` = V mutates | `set(index:usize, value:T)` mutates | |...

# PackedByteArray | Godot Method | Rust Method | |-|-| | `array[index]` -> `int` | `get(index:usize)` -> `u8` | | `append(int)` -> `bool` | `push(value:u8)` "docs call this out explicitly...

# PackedArray Outside of packed byte array every godot PackedArray has the same functions and every rust PackedArray has the same methods. Because of that we can generalize here: |...