Search found 242 matches

by Luxliev
Thu Jun 08, 2017 1:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Can you make frames transparent? [SOLVED]
Replies: 7
Views: 8128

Re: Can you make frames transparent? [SOLVED]

I was looking for pure opacity color this will take care of that problem. Thanks
by Luxliev
Thu Jun 08, 2017 1:45 pm
Forum: Ren'Py Questions and Announcements
Topic: How to create minimap in Ren'py? [SOLVED]
Replies: 4
Views: 1167

Re: How to create minimap in Ren'py? [SOLVED]

No problem thanks for answer.
by Luxliev
Thu Jun 08, 2017 12:25 pm
Forum: Ren'Py Questions and Announcements
Topic: Can you make frames transparent? [SOLVED]
Replies: 7
Views: 8128

Re: Can you make frames transparent?

Thanks for all answers, they work great. Example for the rest: screen transparent_frame: frame: background Solid("#0000FF7F") align (0.5, 0.5) grid 2 3: text "Top-Left" text "Top-Right" text "Center-Left" text "Center-Right" text "Bottom-Left&qu...
by Luxliev
Thu Jun 08, 2017 9:48 am
Forum: Ren'Py Questions and Announcements
Topic: Can you make frames transparent? [SOLVED]
Replies: 7
Views: 8128

Can you make frames transparent? [SOLVED]

Alpha doesn't work (alpha is not a keyword argument or valid child for the frame statement) so I was wondering if there is any other way to make frame transparent.
by Luxliev
Thu Jun 08, 2017 9:44 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'py Python library support [SOLVED]
Replies: 2
Views: 1605

Re: Ren'py Python library support

That's great. Thanks for answer.
by Luxliev
Thu Jun 08, 2017 7:55 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'py Python library support [SOLVED]
Replies: 2
Views: 1605

Ren'py Python library support [SOLVED]

What Python libraries does Ren'py support? From what I saw so far I can use everything that is preinstalled in Python. Can I install new libraries for a project or it's not possible?
by Luxliev
Thu Jun 08, 2017 7:40 am
Forum: Ren'Py Questions and Announcements
Topic: How to create minimap in Ren'py? [SOLVED]
Replies: 4
Views: 1167

Re: How to create minimap in Ren'py?

Thanks for answer! EDIT: When I try to uncomment tile_a it keeps giving me error that tile_a is not defined even though it is at the start of the code. Even if I'll add this to init block I get same error. I changed tile_a from your code above to minimap1 and minimap2 image minimap1 = "minimap1...
by Luxliev
Thu Jun 08, 2017 7:02 am
Forum: Ren'Py Questions and Announcements
Topic: How to create minimap in Ren'py? [SOLVED]
Replies: 4
Views: 1167

How to create minimap in Ren'py? [SOLVED]

I'm looking for most cpu, gpu efficient way to create minimap in renpy. I assume I should use same image from memory to create blocks. Correct me if I'm wrong. This is where I'm at the moment: init python: minimap_width = 4 minimap_height = 4 minimap_data = ["1111", "1001", "...
by Luxliev
Tue Jun 06, 2017 2:58 pm
Forum: Ren'Py Cookbook
Topic: Dungeon Crawl RPG Framework
Replies: 99
Views: 60694

Re: Dungeon Crawl RPG Framework

Wonderful framework.

There is one bug in Ren'py version 6.99.12.
You can get wall hack (you can move through walls and all arrows are available even though you're facing a wall). I don't know what triggers it.
by Luxliev
Sun Jun 04, 2017 4:26 pm
Forum: Ren'Py Questions and Announcements
Topic: How do you create Tile Map in Ren'Py [SOLVED]
Replies: 3
Views: 2120

Re: How do you create Tile Map in Ren'Py

This is exactly what I was looking for. Thank you for help.
by Luxliev
Sat Jun 03, 2017 1:55 am
Forum: Ren'Py Questions and Announcements
Topic: How do you create Tile Map in Ren'Py [SOLVED]
Replies: 3
Views: 2120

Re: How do you create Tile Map in Ren'Py

I tried to do anything but when I press Start in project nothing happens. This is how entire project looks like (also attached file as zip): init -10: image tiles = "images/tiles.png" # Function: # im.Crop (im, x, y, w, h, **properties): image tile_blocked = im.Crop("tiles.png", ...
by Luxliev
Fri Jun 02, 2017 1:15 pm
Forum: Ren'Py Questions and Announcements
Topic: How do you create Tile Map in Ren'Py [SOLVED]
Replies: 3
Views: 2120

How do you create Tile Map in Ren'Py [SOLVED]

Good evening everyone. It's been a while. I learned few new tricks in last year and I created random dungeon generator based on perfect maze with graph for dijkistra path finding. Example 1 https://scontent-waw1-1.xx.fbcdn.net/v/t1.0-9/17265084_1569915479703455_6875533250951580796_n.jpg?oh=48991a376...
by Luxliev
Fri Dec 18, 2015 8:08 am
Forum: Ren'Py Questions and Announcements
Topic: Particle Burst - Cookbook
Replies: 7
Views: 2746

Re: Particle Burst - Cookbook [SOLVED]

firecat wrote:i try it on a old version and the current version, there is nothing wrong with it. what kind of error did you get?
Code loads but it doesn't work, nothing happens.
xela wrote:How about this?:
That's pretty cool! Thanks for sharing
by Luxliev
Thu Dec 17, 2015 5:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Particle Burst - Cookbook
Replies: 7
Views: 2746

Particle Burst - Cookbook

Can anyone tell what is wrong in this code from cookbook?

http://www.renpy.org/wiki/renpy/doc/coo ... icle_Burst

It doesn't work in current Ren'py version.
by Luxliev
Wed Dec 16, 2015 6:43 am
Forum: Ren'Py Questions and Announcements
Topic: ATL on hover / on idle
Replies: 1
Views: 201

ATL on hover / on idle

I wanted to use on hover, idle from example in doc but it doesn't work. What is wrong here? Everything works except hover, idle. show logo_mini at truecenter show logo: on show: alpha 0.0 linear 1.0 alpha 1.0 on hide: linear 1.0 alpha 0.0 on hover: linear .25 zoom 1.25 on idle: linear .25 zoom 1.0 t...