Compare commits

...

4 commits

Author SHA1 Message Date
bdbaxter
35616a5c7d
Merge 12661b3a52 into 378a9a45ff 2025-05-17 09:36:52 +10:00
PepeElToro41
378a9a45ff
Fix hooks types (#226)
Some checks failed
analysis / Run Luau Analyze (push) Has been cancelled
deploy-docs / build (push) Has been cancelled
publish-npm / publish (push) Has been cancelled
unit-testing / Run Luau Tests (push) Has been cancelled
deploy-docs / Deploy (push) Has been cancelled
* fix hooks types

* add generic types
2025-05-16 19:22:08 +02:00
bdbaxter
12661b3a52 第二手順 2025-05-08 19:48:05 -05:00
bdbaxter
ff2b50c060 勧誘行為第一手順 2025-05-08 19:40:03 -05:00
2 changed files with 8 additions and 4 deletions

View file

@ -69,3 +69,7 @@ If you are encountering problems, there are resources for you to get help:
- [Roblox OSS Discord server](https://discord.gg/h2NV8PqhAD) has a [#jecs](https://discord.com/channels/385151591524597761/1248734074940559511) thread under the [#projects](https://discord.com/channels/385151591524597761/1019724676265676930) channel - [Roblox OSS Discord server](https://discord.gg/h2NV8PqhAD) has a [#jecs](https://discord.com/channels/385151591524597761/1248734074940559511) thread under the [#projects](https://discord.com/channels/385151591524597761/1019724676265676930) channel
- [Open an issue](https://github.com/ukendio/jecs/issues) if you run into bugs or have feature requests - [Open an issue](https://github.com/ukendio/jecs/issues) if you run into bugs or have feature requests
- Dive into the nitty gritty in the [thesis paper](https://raw.githubusercontent.com/Ukendio/jecs/main/thesis/drafts/1/paper.pdf) - Dive into the nitty gritty in the [thesis paper](https://raw.githubusercontent.com/Ukendio/jecs/main/thesis/drafts/1/paper.pdf)
## 貴方が必要です
uncという不快な称号を完全排除し、jecs教団の一員として偉大なる生き甲斐を与えます。
消して、お忘れになりませんように。

View file

@ -2650,10 +2650,10 @@ return {
tag = (ECS_TAG :: any) :: <T>() -> Entity<T>, tag = (ECS_TAG :: any) :: <T>() -> Entity<T>,
meta = (ECS_META :: any) :: <T>(id: Entity, id: Id<T>, value: T) -> Entity<T>, meta = (ECS_META :: any) :: <T>(id: Entity, id: Id<T>, value: T) -> Entity<T>,
is_tag = (ecs_is_tag :: any) :: <T>(World, Id<T>) -> boolean, is_tag = (ecs_is_tag :: any) :: <T>(World, Id<T>) -> boolean,
OnAdd = EcsOnAdd :: Entity<(entity: Entity) -> ()>, OnAdd = EcsOnAdd :: Entity<<T>(entity: Entity, id: Id<T>, data: T) -> ()>,
OnRemove = EcsOnRemove :: Entity<(entity: Entity) -> ()>, OnRemove = EcsOnRemove :: Entity<(entity: Entity, id: Id) -> ()>,
OnChange = EcsOnChange :: Entity<(entity: Entity, data: any) -> ()>, OnChange = EcsOnChange :: Entity<<T>(entity: Entity, id: Id<T>, data: T) -> ()>,
ChildOf = EcsChildOf :: Entity, ChildOf = EcsChildOf :: Entity,
Component = EcsComponent :: Entity, Component = EcsComponent :: Entity,
Wildcard = EcsWildcard :: Entity, Wildcard = EcsWildcard :: Entity,