Search found 107 matches

by GeeSeki
Tue Jun 22, 2021 9:37 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with creating a parallaxing/scrolling background
Replies: 4
Views: 704

Re: Problem with creating a parallaxing/scrolling background

It is slightly hard to understand the problem without seeing it, but I have a guess. This is less likely one: xalign 0. means "align left side of the image to the left side of the screen" xalign 1. means "align right side of the image to the right side of the screen" If displaya...
by GeeSeki
Tue Jun 22, 2021 9:20 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with creating a parallaxing/scrolling background
Replies: 4
Views: 704

Re: Problem with creating a parallaxing/scrolling background

Can you show what you mean by that and what you expect? And ideally, a small test project which shows the problem. https://www.youtube.com/watch?v=AlKM1ZpyAWc&ab_channel=TeamMiracles This is the result I want except looping (the assets I have loops). But the code I have at the moment doesn't do...
by GeeSeki
Tue Jun 22, 2021 9:08 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with creating a parallaxing/scrolling background
Replies: 4
Views: 704

Problem with creating a parallaxing/scrolling background

I thought it'd be as simple as this but this makes the background all janky and buggy and the game would send the various layers of the background shooting left and right instead of a smooth motion that loops, as well as showing past the very right of each layer. What I'm guessing is that the layers...
by GeeSeki
Thu Apr 29, 2021 3:28 am
Forum: I am a Musician, Sound Editor, or Video Editor
Topic: Composer & sound designer with 10 years of experience
Replies: 23
Views: 65014

Re: Full-time experienced composer – Marek Domagała

Marek did an amazing job creating an EDM style loop for a nightclub location in my Visual Novel. Even though I wasn't quite sure how to properly describe what I wanted in musical terms, he knew exactly the tone and feel I wanted. Highly recommend him for his professionalism, quick but high quality t...
by GeeSeki
Fri Apr 16, 2021 2:51 am
Forum: We are offering Paid Work
Topic: [CLOSED][PAID] Looking for a music producer for an original single looping EDM-style track
Replies: 2
Views: 641

[CLOSED][PAID] Looking for a music producer for an original single looping EDM-style track

Hi, I'm GeeSeki, creator of A Town Uncovered [NSFW].

I'm looking to commission someone who is able to produce an EDM style beat that loops for a nightclub location in the game (about 1 minute loop).

Please contact me via geesekivn@gmail.com with some relevant samples and your pricing. Thanks!
by GeeSeki
Thu Apr 15, 2021 6:57 am
Forum: Ren'Py Questions and Announcements
Topic: Help with Imagebuttons and variables
Replies: 2
Views: 359

Re: Help with Imagebuttons and variables

String substitution does not work in filenames. You need to construct string manually: screen scr_test(): python: gotd_file1 = "btn " + giftoftheday_1 + "_%%s" #Use double percentage sign to avoid treating it as a substitution marker gotd_file2 = "btn " + giftoftheday_...
by GeeSeki
Thu Apr 15, 2021 6:22 am
Forum: Ren'Py Questions and Announcements
Topic: Help with Imagebuttons and variables
Replies: 2
Views: 359

Help with Imagebuttons and variables

I'm have 3 variables that pull a random gift from a list. For example: giftoftheday_1 = "gift001" giftoftheday_2 = "gift002" giftoftheday_3 = "gift003" I'm trying to get the imagebutton to display based on which gift is chosen but renpy can't read the button. screen scr...
by GeeSeki
Thu Apr 15, 2021 2:20 am
Forum: Ren'Py Questions and Announcements
Topic: Help with burger stacking layeredimage logic
Replies: 3
Views: 487

Re: Help with burger stacking layeredimage logic

A dynamic composite might be simplest... init python: def burger_composite(st at): bun_height = 50 * (len(stacklayer)+1) return Composite( (400, bun_height), ### the size (0, bun_height - 50), "/images/ingredients/ing_bottombun.png", ### the base placed at image height minus 50 ## extra l...
by GeeSeki
Wed Apr 14, 2021 12:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with burger stacking layeredimage logic
Replies: 3
Views: 487

Help with burger stacking layeredimage logic

So I'm working on a burger assembly thing and I've got a sorta-working prototype of it but the problem is that the ypos of the layers are all hardcoded. label lbl_burger_plate: $ on_plate.append(Ingredient.beefpatty.id) $ Ingredient.beefpatty.stock -= 1 $ stacklayer.append("beefpatty") $ s...
by GeeSeki
Wed Apr 14, 2021 6:46 am
Forum: Ren'Py Questions and Announcements
Topic: Help with replacing an attribute with a variable?
Replies: 7
Views: 487

Re: Help with replacing an attribute with a variable?

Ocelot wrote: Wed Apr 14, 2021 6:31 am filling_str is a string intended for displaying as a string, comma-separated and all. You can just skip conversion to string, if you need a list for something else: $ fillings = getattr(Burger, pick_burger).fillings
Got it, thanks! That was the last piece to my puzzle :D
by GeeSeki
Wed Apr 14, 2021 6:29 am
Forum: Ren'Py Questions and Announcements
Topic: Help with replacing an attribute with a variable?
Replies: 7
Views: 487

Re: Help with replacing an attribute with a variable?

Oh. I didn't notice that possible_burgers do not contain actual objects. You will need either to place actual objects here or go an extra step of extracting object information from class: $ fillings_str = ', '.join(getattr(Burger, pick_burger).fillings) Okay, so I've come across a new problem with ...
by GeeSeki
Wed Apr 14, 2021 5:56 am
Forum: Ren'Py Questions and Announcements
Topic: Help with replacing an attribute with a variable?
Replies: 7
Views: 487

Re: Help with replacing an attribute with a variable?

Ocelot wrote: Wed Apr 14, 2021 5:17 am Oh. I didn't notice that possible_burgers do not contain actual objects. You will need either to place actual objects here or go an extra step of extracting object information from class: $ fillings_str = ', '.join(getattr(Burger, pick_burger).fillings)
This worked perfeclty, thank you!
by GeeSeki
Wed Apr 14, 2021 5:07 am
Forum: Ren'Py Questions and Announcements
Topic: Help with replacing an attribute with a variable?
Replies: 7
Views: 487

Re: Help with replacing an attribute with a variable?

$ fillings_str = ', '.join(pick_burger.fillings) "Burger fillings: [fillings_str]" Not sure how I'm supposed to implement that, best I can get is it literally printing out "Burger fillings: Burger.beefburger.fillings" $ fillings_str = "Burger".join(pick_burger.fillings...
by GeeSeki
Wed Apr 14, 2021 4:25 am
Forum: Ren'Py Questions and Announcements
Topic: Help with replacing an attribute with a variable?
Replies: 7
Views: 487

Help with replacing an attribute with a variable?

I'm not sure if the question makes sense but basically this is the code I'm working on. I'm trying to get it so that after picking a random burger (in this case the "beefburger") from a list, it then has it list out the fillings of the beefburger ("beefpatty"). I want it so that ...
by GeeSeki
Sun Feb 02, 2020 11:22 pm
Forum: We are offering Paid Work
Topic: [CLOSED] Looking for a Programmer to Create a Framework for Simple Trading Card Game
Replies: 0
Views: 424

[CLOSED] Looking for a Programmer to Create a Framework for Simple Trading Card Game

Hi, I'm looking for a programmer to create the framework for a card game I had in mind. It's a rock-paper-scissors with an attack and defence value system type of card game. No art assets are available for the time being but creating and using temporary rectangles with labels would suffice. You woul...