I'm hoping people will make some tutorials about how to spiff up jEdit a little. The VoxSpell plugin looks quite useful, as it is already smart enough to use the syntax highlighting file to determine which words should be spell-checked.Twar3Draconis wrote:Testing it now. I like the added text editor.
Ren'Py 6.7.1 Released
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
- PyTom
- Ren'Py Creator
- Posts: 15893
- Joined: Mon Feb 02, 2004 10:58 am
- Completed: Moonlight Walks
- Projects: Ren'Py
- IRC Nick: renpytom
- Github: renpytom
- itch: renpytom
- Location: Kings Park, NY
- Contact:
Re: Ren'Py 6.7.1 Pre-Released
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom(When was the last time you backed up your game?)
"Silly and fun things are important." - Elon Musk
Software > Drama • https://www.patreon.com/renpytom
- jack_norton
- Lemma-Class Veteran
- Posts: 4067
- Joined: Mon Jul 21, 2008 5:41 pm
- Completed: Too many! See my homepage
- Projects: A lot! See www.winterwolves.com
- Tumblr: winterwolvesgames
- Contact:
Re: Ren'Py 6.7.1 Pre-Released
There's a key to start the game from Jedit? I didn't find it... 
- PyTom
- Ren'Py Creator
- Posts: 15893
- Joined: Mon Feb 02, 2004 10:58 am
- Completed: Moonlight Walks
- Projects: Ren'Py
- IRC Nick: renpytom
- Github: renpytom
- itch: renpytom
- Location: Kings Park, NY
- Contact:
Re: Ren'Py 6.7.1 Pre-Released
Updated 6.7.1 to 6.7.1b.
This release defaults the framerate to 60hz, per Jake's experiments.
It also auto-detects .rpa archives in the game directory, and the archiver supports archiving to multiple files. It now prompts for the filename.
The reasoning for the latter change is to allow people to release "character archives". A character archive would be a .rpa file containing character art and a small script file that loads in that character art. The user can drop the character archive file into the game directory, and they get a bunch of character images defined all for them.
I haven't figured out how to let people know which images are defined by the file. For now, it's just going to be documentation. The attached archive defines the following images:
* sylvie normal
* sylvie smile
* sylvie giggle
* sylvie surprised
You can use it by dropping it into the game directory, and using something like this as the script:
Notice the total lack of image statements.
This release defaults the framerate to 60hz, per Jake's experiments.
It also auto-detects .rpa archives in the game directory, and the archiver supports archiving to multiple files. It now prompts for the filename.
The reasoning for the latter change is to allow people to release "character archives". A character archive would be a .rpa file containing character art and a small script file that loads in that character art. The user can drop the character archive file into the game directory, and they get a bunch of character images defined all for them.
I haven't figured out how to let people know which images are defined by the file. For now, it's just going to be documentation. The attached archive defines the following images:
* sylvie normal
* sylvie smile
* sylvie giggle
* sylvie surprised
You can use it by dropping it into the game directory, and using something like this as the script:
Code: Select all
init:
$ s = Character('Sylive', color="#c8ffc8")
label start:
show sylvie smile
s "Smile"
show sylvie giggle
s "Giggle"
show sylvie normal
s "Normal"
show sylvie surprised
s "Surprised"
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom(When was the last time you backed up your game?)
"Silly and fun things are important." - Elon Musk
Software > Drama • https://www.patreon.com/renpytom
- jack_norton
- Lemma-Class Veteran
- Posts: 4067
- Joined: Mon Jul 21, 2008 5:41 pm
- Completed: Too many! See my homepage
- Projects: A lot! See www.winterwolves.com
- Tumblr: winterwolvesgames
- Contact:
Re: Ren'Py 6.7.1 Pre-Released
That's a nice addition. Will it work with Conditionswitch? since I'm using it to actually swap from one image to another, rather than blit each different expression over the previous one? 
- PyTom
- Ren'Py Creator
- Posts: 15893
- Joined: Mon Feb 02, 2004 10:58 am
- Completed: Moonlight Walks
- Projects: Ren'Py
- IRC Nick: renpytom
- Github: renpytom
- itch: renpytom
- Location: Kings Park, NY
- Contact:
Re: Ren'Py 6.7.1 Pre-Released
Not yet, but it will if I make public ImageReference.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom(When was the last time you backed up your game?)
"Silly and fun things are important." - Elon Musk
Software > Drama • https://www.patreon.com/renpytom
Re: Ren'Py 6.7.1 Pre-Released
I'm not sure I understand this new feature's goal ô_o. Is the goal to have multiple interchangeable sets of pictures for a character for example?
Re: Ren'Py 6.7.1 Pre-Released
I guess if people can distribute pre-set-up characters in a single file, it means they would be able to get away without distributing straight sets of images which are easier to 'steal'?monele wrote:I'm not sure I understand this new feature's goal ô_o.
It would also simplify things in the cases where the character is distributed as a single base image and a collection of tiny face overlays, since all the work aligning and compositing - and maybe setting up animations, and so on - would be done in the .rpa file, so the images wouldn't have to be accompanied by a set of instructions on how to set the sprites up.
Server error: user 'Jake' not found
Re: Ren'Py 6.7.1 Pre-Released
Ohh, the idea is to allow some artists to distribute stand-alone character packs for others to use, eh?
- PyTom
- Ren'Py Creator
- Posts: 15893
- Joined: Mon Feb 02, 2004 10:58 am
- Completed: Moonlight Walks
- Projects: Ren'Py
- IRC Nick: renpytom
- Github: renpytom
- itch: renpytom
- Location: Kings Park, NY
- Contact:
Re: Ren'Py 6.7.1 Pre-Released
Yeah, the idea is to promote easy character reuse. The idea is that one can just drop the archive into the game directory, and the character is all set up and ready to go.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom(When was the last time you backed up your game?)
"Silly and fun things are important." - Elon Musk
Software > Drama • https://www.patreon.com/renpytom
Re: Ren'Py 6.7.1 Pre-Released
I see, I see ^_^. This might actually have more success than Alice given the simplicity.
- PyTom
- Ren'Py Creator
- Posts: 15893
- Joined: Mon Feb 02, 2004 10:58 am
- Completed: Moonlight Walks
- Projects: Ren'Py
- IRC Nick: renpytom
- Github: renpytom
- itch: renpytom
- Location: Kings Park, NY
- Contact:
Re: Ren'Py 6.7.1 Pre-Released
To be fair, it's not a terribly original idea. It's directly inspired by novelty's content pack format, which I might support at some point in the future, at least to the extent of making an nvz -> rpa converter.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom(When was the last time you backed up your game?)
"Silly and fun things are important." - Elon Musk
Software > Drama • https://www.patreon.com/renpytom
- PyTom
- Ren'Py Creator
- Posts: 15893
- Joined: Mon Feb 02, 2004 10:58 am
- Completed: Moonlight Walks
- Projects: Ren'Py
- IRC Nick: renpytom
- Github: renpytom
- itch: renpytom
- Location: Kings Park, NY
- Contact:
Re: Ren'Py 6.7.1 Released
I've released 6.7.1c as 6.7.1 final.
6.7.1c has 2 low-risk changes, compared to 6.7.1b:
- A new renpy.copy_images function lets you copy already-defined images.
- The character art for "The Question" has been updated with new Deji-made art.
6.7.1c has 2 low-risk changes, compared to 6.7.1b:
- A new renpy.copy_images function lets you copy already-defined images.
- The character art for "The Question" has been updated with new Deji-made art.
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom(When was the last time you backed up your game?)
"Silly and fun things are important." - Elon Musk
Software > Drama • https://www.patreon.com/renpytom
-
filsduloup
- Regular
- Posts: 65
- Joined: Thu Aug 28, 2008 3:00 pm
- Projects: Alchimical Girl -Homuncule-
- Location: France
- Contact:
Re: Ren'Py 6.7.1 Released
My project is same in the renpy 7.1 (it is more speed ???)
i have on jukebox
change the save config
a gallery cg with 52 CG
7000 line
i don't like this text editor beacause i don't see the line for make a bloc ! in consequently making a game with renpy 7.1 is a litle more hard !
the documentation offline in the new version is good thing !
i have on jukebox
change the save config
a gallery cg with 52 CG
7000 line
i don't like this text editor beacause i don't see the line for make a bloc ! in consequently making a game with renpy 7.1 is a litle more hard !
the documentation offline in the new version is good thing !
- PyTom
- Ren'Py Creator
- Posts: 15893
- Joined: Mon Feb 02, 2004 10:58 am
- Completed: Moonlight Walks
- Projects: Ren'Py
- IRC Nick: renpytom
- Github: renpytom
- itch: renpytom
- Location: Kings Park, NY
- Contact:
Re: Ren'Py 6.7.1 Released
Make a block? Do you mean block indent? In that case, just select the lines you want to move and hit tab. (Hit shift-tab to out-dent.)
Supporting creators since 2004
(When was the last time you backed up your game?)
"Do good work." - Virgil Ivan "Gus" Grissom(When was the last time you backed up your game?)
"Silly and fun things are important." - Elon Musk
Software > Drama • https://www.patreon.com/renpytom
-
filsduloup
- Regular
- Posts: 65
- Joined: Thu Aug 28, 2008 3:00 pm
- Projects: Alchimical Girl -Homuncule-
- Location: France
- Contact:
Re: Ren'Py 6.7.1 Released
Yeah But before there were benchmarks to be set for the start blocks
(-label, ect ...)
And it is easier still with gray vertical lines and benchmarks. Finally it was easier and more enjoyable!
Apart from the loss of my habits is I encountered no difficulty with the text editor!
(-label, ect ...)
And it is easier still with gray vertical lines and benchmarks. Finally it was easier and more enjoyable!
Apart from the loss of my habits is I encountered no difficulty with the text editor!
Who is online
Users browsing this forum: Google [Bot]
