Difference between revisions of "PulpScript"

From Playdate Community Wiki
Jump to: navigation, search
Line 1: Line 1:
PulpScript is a friendly scripting language that allows you to add interactivity to your [[Pulp]] games. Its syntax is terse but powerful. A good rule of thumb when writing PulpScript is do less, less often.
PulpScript is a friendly scripting language that allows you to add interactivity to your [[Pulp]] games. Its syntax is terse but powerful. A good rule of thumb when writing PulpScript is do less, less often.
=== Links ===
* [https://devforum.play.date/c/pulp Developer Forum]


=== Documentation ===
=== Documentation ===
Line 6: Line 9:
=== Tutorials ===
=== Tutorials ===
* [https://www.youtube.com/watch?v=r5GnCjsAqeQ PulpScript: A Beginner's Guide]: A tutorial that goes over the basics of PulpScript. Concise and to the point.
* [https://www.youtube.com/watch?v=r5GnCjsAqeQ PulpScript: A Beginner's Guide]: A tutorial that goes over the basics of PulpScript. Concise and to the point.
* [https://www.youtube.com/watch?v=p4eLcP3hgJc Make an Adventure Game for the Playdate using Pulp]: How to implement health, static hazards, moving hazards, locked doors, and more.
* [https://www.youtube.com/watch?v=p4eLcP3hgJc Make an Adventure Game for the Playdate using Pulp]: How to implement health, static hazards, moving hazards, locked doors, and more.
* [https://www.youtube.com/watch?v=ERJ0J2vxbzk Making a Simple Enemy AI and Attack System]: How to make a simple enemy pathfinding AI, how to make the player face the direction you move, a simple sword attack system, as well as locking a room until all enemies are defeated
* [https://www.youtube.com/watch?v=ERJ0J2vxbzk Making a Simple Enemy AI and Attack System]: How to make a simple enemy pathfinding AI, how to make the player face the direction you move, a simple sword attack system, as well as locking a room until all enemies are defeated
* [https://unbelievable-flavour.medium.com/neat-pulpscript-features-2c20cb809aec] A blogpost about some interesting Pulp features.
* [https://unbelievable-flavour.medium.com/neat-pulpscript-features-2c20cb809aec] A blogpost about some interesting Pulp features.

Revision as of 08:10, 9 June 2022

PulpScript is a friendly scripting language that allows you to add interactivity to your Pulp games. Its syntax is terse but powerful. A good rule of thumb when writing PulpScript is do less, less often.

Links

Documentation

  • PulpScript : Aside from all the tutorials and guides. It's always nice to have the documentation to fall back on. All different PulpScript commands are available for viewing right here.

Tutorials