Browsing English (United Kingdom) translation

Don't show this notice anymore
Before translating, be sure to go through Launchpad Translators instructions and English (United Kingdom) guidelines.
110 of 65 results
1.
Creator-Defined Displayables
Creator-Defined Displayables
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:9
2.
The most complex, but most powerful, way of customizing Ren'Py's behavior is to use a creator-defined displayable. A creator-defined displayable is allowed to take arbitrary pygame events. It can also render other displayables, and place them at arbitrary locations on the screen. This makes it suitable for creating 2D mini-games that cannot be expressed with the tools Ren'Py gives you. (But see also the section :ref:`sprites <sprites>`, which describes a higher-level way of accomplishing many of the same things.)
The most complex, but most powerful, way of customizing Ren'Py's behavior is to use a creator-defined displayable. A creator-defined displayable is allowed to take arbitrary pygame events. It can also render other displayables, and place them at arbitrary locations on the screen. This makes it suitable for creating 2D mini-games that cannot be expressed with the tools Ren'Py gives you. (But see also the section :ref:`sprites <sprites>`, which describes a higher-level way of accomplishing many of the same things.)
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:11
3.
Creator-defined displayables are programmed entirely in Python, and we encourage you to have a reasonable degree of skill at object-oriented Python programming before you begin creating one.
Creator-defined displayables are programmed entirely in Python, and we encourage you to have a reasonable degree of skill at object-oriented Python programming before you begin creating one.
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:20
4.
Example
Example
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:25
5.
Here's an example of a creator-defined displayable. This displayable changes renders its child with an alpha that is determined by the distance of the mouse pointer from the center of the child. ::
Here's an example of a creator-defined displayable. This displayable changes renders its child with an alpha that is determined by the distance of the mouse pointer from the center of the child. ::
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:27
6.
To use the creator-defined displayable, we can create an instance of it, and add that instance to the screen. ::
To use the creator-defined displayable, we can create an instance of it, and add that instance to the screen. ::
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:106
7.
renpy.Displayable
renpy.Displayable
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:123
8.
A creator-defined displayable is created by subclassing the renpy.Displayable class. A creator-defined displayable must override the render method, and may override other methods as well.
A creator-defined displayable is created by subclassing the renpy.Displayable class. A creator-defined displayable must override the render method, and may override other methods as well.
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:125
9.
A displayable object must be pickleable, which means it may not contain references to objects that cannot be pickled. Most notably, Render objects cannot be stored in a creator-defined displayable.
A displayable object must be pickleable, which means it may not contain references to objects that cannot be pickled. Most notably, Render objects cannot be stored in a creator-defined displayable.
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:129
10.
Since we expect you to override the methods of the displayable class, we'll present them with the `self` parameter.
Since we expect you to override the methods of the displayable class, we'll present them with the `self` parameter.
Translated and reviewed by Stephan Woidowski
Located in ../../source/udd.rst:133
110 of 65 results

This translation is managed by Launchpad's British English (En-GB) Translations, assigned by Launchpad Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: Stephan Woidowski.