Skip to content
tacoen edited this page Jun 1, 2020 · 16 revisions

Ramen

Renpy According Me, a modular approach. It is renpy framework to help you creating of visual novel game.

Modular Approach

In Chapter I/Main Game

	place = ramen_scene('place')
	rina = ramen_npc('rina')

Function, Scene, and npc pose/sprite added in Chapter II

	register_plugins(
		type='episodes',
		title="Extending Demo",
		build=True,
	)

	place.extend()
	rina.extend()
	

Note

All markdown files were generated from inside the project (semi-live documentaion).

Clone this wiki locally