Search found 14 matches
- Sun Jul 17, 2011 1:28 am
- Forum: Other Visual Novel Engines
- Topic: Visual Novel Engine in JavaScript
- Replies: 14
- Views: 4028
Re: Visual Novel Engine in JavaScript
Wow, that looks great! Thank you very much; glad the code was useful for you. I'm looking at your script, and I'm thinking it might be useful to add a feature so that instead of having to do this: kurara, {image: "kurara_unsure.gif"}, kurara, "I think I just made myself hungry...", You could write i...
- Fri Jul 01, 2011 1:25 am
- Forum: Other Visual Novel Engines
- Topic: Visual Novel Engine in JavaScript
- Replies: 14
- Views: 4028
Re: Visual Novel Engine in JavaScript
Except for audio, there's nothing that needs HTML5 (as far as I know), and the only CSS3 is the rounded rectangle corners on menu items. Do you have a link for the webpage graphic novel?
- Thu Jun 30, 2011 11:38 pm
- Forum: Other Visual Novel Engines
- Topic: Visual Novel Engine in JavaScript
- Replies: 14
- Views: 4028
Re: Visual Novel Engine in JavaScript
If statement rewritten. Added text input fields, expanded the audio command.
- Sat Jun 25, 2011 10:48 pm
- Forum: Other Visual Novel Engines
- Topic: Visual Novel Engine in JavaScript
- Replies: 14
- Views: 4028
Re: Visual Novel Engine in JavaScript
If you're using the code, don't get too enamored of the ifStatement; I am rewriting it entirely so that I can then implement save/load.
- Thu Jun 23, 2011 2:34 pm
- Forum: Other Visual Novel Engines
- Topic: Visual Novel Engine in JavaScript
- Replies: 14
- Views: 4028
Re: Visual Novel Engine in JavaScript
OK, it should be fixed now. If you're going to actually use the code, you're best off obtaining it from github.When I hit the "Back to Beginning" button, it starts over without clearing the current state (the background doesn't change, and the music doesn't stop, so the new music plays over it).
- Thu Jun 23, 2011 10:57 am
- Forum: General Discussion
- Topic: What is your religion?
- Replies: 219
- Views: 17433
Re: What is your religion?
Jew by birth, atheist by choice.
- Thu Jun 23, 2011 10:54 am
- Forum: Other Visual Novel Engines
- Topic: Visual Novel Engine in JavaScript
- Replies: 14
- Views: 4028
Re: Visual Novel Engine in JavaScript
Thanks! If there are any features that you need, let me know, and I will see if I can implement them.
- Wed Jun 22, 2011 1:05 pm
- Forum: General Discussion
- Topic: need advices on a certain addiction to a certain game
- Replies: 6
- Views: 699
Re: need advices on a certain addiction to a certain game
As far as schoolwork is concerned: find someone in your class and schedule a "pizza-and-study session" where you can get away from the computer and get some studying done and have some fun at the same time.
- Tue Jun 21, 2011 10:50 pm
- Forum: Other Visual Novel Engines
- Topic: Visual Novel Engine in JavaScript
- Replies: 14
- Views: 4028
Visual Novel Engine in JavaScript
I have written a visual novel engine in JavaScript so that I could adapt a VN that I wrote with Ren'py to a web-based format. It was written specifically for this one project, but I tried to make it general enough that it might be useful to others. It's inspired by Ren'py, but not meant as a replace...
- Tue Jun 22, 2010 1:52 pm
- Forum: Development of Ren'Py
- Topic: ui as a displayable : Solved
- Replies: 3
- Views: 718
Re: ui as a displayable
Solved. Here's an example of code that lets me add several images to the Fixed layout. scale_layout = Fixed() if (left_total > right_total): image_name = "images/scale2.png" else: image_name = "images/scale1.png" scale_layout.add(im.Image(image_name, xpos=x_base, ypos=y_base)) for i in xrange(3): im...
- Mon Jun 21, 2010 8:14 pm
- Forum: Development of Ren'Py
- Topic: ui as a displayable : Solved
- Replies: 3
- Views: 718
Re: ui as a displayable
If you check the Layout section of the Displayables page of the manual it'll show you how to create the Displayable instances you need - so you'll create the Image you want first, and then create the Fixed and pass the Image as the first parameter. Thank you. This starts me in the right direction. ...
- Mon Jun 21, 2010 5:12 pm
- Forum: Development of Ren'Py
- Topic: ui as a displayable : Solved
- Replies: 3
- Views: 718
ui as a displayable : Solved
My script contains a Python function that creates a ui.fixed depending on certain variables. Here's an oversimplified version of the function: def make_drawing(a, b): ui.fixed() if (a < b): ui.image("a.jpg", xpos=100, ypos=50) else: ui.image("b.jpg", xpos=150, ypos=20) # more code involving loops an...
- Fri Mar 19, 2010 7:46 pm
- Forum: General Discussion
- Topic: Lastest Norton Eating my Games
- Replies: 10
- Views: 1475
Re: Lastest Norton Eating my Games
My brother couldn't use the game I told him to download at http://evc-cit.info/psych018/hypothesis_testing-win32.zip; Norton didn't like it. He is using Norton 2010 Internet Security, v 17.5.0.127 The zip file was built on a Linux box, so I'm pretty sure there's no Windows virus introduced from the ...
- Tue Mar 16, 2010 7:42 pm
- Forum: Ideas
- Topic: Educational Visual Novel
- Replies: 4
- Views: 1265
Educational Visual Novel
This is a small visual novel I put together to teach the concepts of hypothesis testing to my psych research methods class. http://evc-cit.info/psych018/hypothesis_testing.html I am sure that this is something that Ren'py was never intended for, but I did it anyway. Comments are welcomed. The back s...