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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Unofficial continuation of FastCast for Roblox
29
29
</div>
30
30
31
31
32
-
</br>
32
+
<br>
33
33
34
34
**FastCast2** It's a **Roblox projectile library**, designed to simulate **thousands** of projectiles without relying on physics replication. <br>
35
35
Because FastCast is no longer actively maintained by [EtiTheSpirit](https://github.com/EtiTheSpirit), this repository continues the project with updates and adaptations.
**An improved version of [FastCast](https://etithespir.it/FastCastAPIDocs/)** with **Parallel scripting**, **more extensions**, and **statically typed**. <br /> **A powerful modern projectile** library
**An improved version of [FastCast](https://etithespir.it/FastCastAPIDocs/)** with **Parallel scripting**, **more extensions**, and **statically typed**. <br /> **A powerful modern projectile** library
27
35
28
-
**FastCast2** It's a **Roblox projectile library** powered by [VMsDispatcher](https://github.com/weenachuangkud/VMsDispatcher) designed to simulate **thousands** of projectiles without relying on physics replication.
36
+
<br>
29
37
38
+
**FastCast2** It's a **Roblox projectile library**, designed to simulate **thousands** of projectiles without relying on physics replication. <br>
30
39
Because FastCast is no longer actively maintained by [EtiTheSpirit](https://github.com/EtiTheSpirit), this repository continues the project with updates and adaptations.
31
40
32
-
<br />
41
+
---
33
42
34
43
# Benefits of using FastCast2
35
44
@@ -306,22 +315,22 @@ Modify active casts at runtime using the static `FastCast` methods:
306
315
307
316
```lua
308
317
-- Read state
309
-
localpos=FastCast2.GetPositionCast(cast)
310
-
localvel=FastCast2.GetVelocityCast(cast)
311
-
localaccel=FastCast2.GetAccelerationCast(cast)
318
+
localpos=FastCast2:GetPositionCast(cast)
319
+
localvel=FastCast2:GetVelocityCast(cast)
320
+
localaccel=FastCast2:GetAccelerationCast(cast)
312
321
313
322
-- Modify state (automatically rebases trajectory)
-- Terminate a cast early (fires CastTerminating and cleans up)
324
-
FastCast2.TerminateCast(cast)
333
+
FastCast2:TerminateCast(cast)
325
334
```
326
335
327
336
> **Tip**: In parallel mode, call `Caster:SyncChangesToCast(cast)` after modifying to push changes into the worker VM.
@@ -346,4 +355,8 @@ Special thanks to the following people from the Suphi Kaner Discord Server:
346
355
347
356
And thanks to everyone else in the server who helped along the way.
348
357
349
-
More broadly, community feedback has played a significant role in FastCast2's existence and development. Many ideas, discussions, and sources of motivation came from conversations within the Suphi Kaner Discord server. FastCast2 would not be where it is today without the contributions, feedback, and support of the community.
358
+
More broadly, community feedback has played a significant role in FastCast2's existence and development. Many ideas, discussions, and sources of motivation came from conversations within the Suphi Kaner Discord server. FastCast2 would not exist today without the contributions, feedback, and support of the community.
0 commit comments