diff --git a/assets/level0.json b/assets/level0.json index 10cb453..e969223 100644 --- a/assets/level0.json +++ b/assets/level0.json @@ -337,8 +337,8 @@ "rotation":0, "visible":true, "width":32, - "x":1149.66666666667, - "y":2131.5 + "x":951.166666666667, + "y":970.666666666667 }, { "class":"", diff --git a/main.c b/main.c index 98ea258..1225b85 100644 --- a/main.c +++ b/main.c @@ -1956,7 +1956,7 @@ void draw_dialog_panel(Entity *talking_to) { if(in_astrix) { - colors[char_i] = colhex(0xffdf24); + colors[char_i] = colhex(0xab9100); } else { @@ -2124,6 +2124,7 @@ void frame(void) dbgsquare(screen_to_world(mouse_pos)); // tile coord + if(show_devtools) { TileCoord hovering = world_to_tilecoord(screen_to_world(mouse_pos)); Vec2 points[4] ={0}; @@ -2138,6 +2139,7 @@ void frame(void) } // statistics + if(show_devtools) PROFILE_SCOPE("statistics") { Vec2 pos = V2(0.0, screen_size().Y); diff --git a/marketing_page/index.html b/marketing_page/index.html new file mode 100644 index 0000000..dd065ec --- /dev/null +++ b/marketing_page/index.html @@ -0,0 +1,110 @@ + + + PlayGPT + + + + + + + + + + +
+ +

An open source action-rpg where all the characters are controlled by GPT-3. Say ANYTHING to them, and they'll respond like people!

+ +

Mobile or Desktop

+ 🔗Github
+ 🔗Development Streams
+
+ +
+
+
+

Subscribe to news about PlayGPT

+
+ + + +
+
+ + +
+ +
+
+ +
+
+
+
+
+ + +
+ + + + diff --git a/marketing_page/logo.svg b/marketing_page/logo.svg new file mode 100644 index 0000000..5ddee37 --- /dev/null +++ b/marketing_page/logo.svg @@ -0,0 +1,1061 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/marketing_page/trailer.mp4 b/marketing_page/trailer.mp4 new file mode 100644 index 0000000..0b63f74 Binary files /dev/null and b/marketing_page/trailer.mp4 differ diff --git a/server/main.go b/server/main.go index cf48f8e..4af3fb2 100644 --- a/server/main.go +++ b/server/main.go @@ -32,7 +32,9 @@ func index(w http.ResponseWriter, req *http.Request) { MaxTokens: 80, Prompt: promptString, Temperature: 0.9, - FrequencyPenalty: 0.75, + FrequencyPenalty: 0.0, + PresencePenalty: 0.6, + TopP: 1.0, Stop: []string{"\""}, N: 1, }