How The New York Times Games Team Designed and Built Vertex (2024)

Connecting the dots on game development.

How The New York Times Games Team Designed and Built Vertex (1)

Published in

NYT Open

·

7 min read

·

Mar 5, 2020

--

By Andrew Dore, Ashley Riccardi, Carron White and Sam Von Ehren

The game idea that would eventually become Vertex was born the weekend Sam Von Ehren moved to New York City. In the middle of unpacking, Von Ehren took a break to attend a friend’s party, where he met Deanna Destefano, one of the product designers on the New York Times Crossword app. Destefano told Von Ehren that her team was beginning to brainstorm ideas for new games, but all they could come up with were word games. “It would be cool,” she said, “if we did something with colors and shapes.”

While the party raged on, Von Ehren, a game designer by training, kept turning that prompt over in his head. How might one make a Times game without words, he wondered. When he went home, he drafted up a prototype for a game that asked players to create two triangles from four dots. The idea combined a tangram puzzle with the dots and boxes game often played on pencil and paper.

How The New York Times Games Team Designed and Built Vertex (3)

Two years later, Von Ehren had gotten a job as a game designer on The Times’s the Games team and was leading the brainstorming for new games. The team had just launched Tiles, its first non-word game, and wanted to prototype more non-word games. Von Ehren fished out the old prototype he had designed his first weekend in New York and showed it to the team.

While the team thought the game was interesting, they didn’t think solving it felt like a big enough accomplishment. The solving experience needed to feel revelatory, like the flash of insight that comes when solving a crossword puzzle.

That’s when the team had their own “ah-ha” moment: instead of centering the game around drawing triangles, they reoriented it so the shapes reveal an image when connected. As players connect the dots, the shapes fill with color, hinting at the final image. To keep players engaged and hint at the final image, the team included a clue, similar to those found in traditional crossword puzzles.

At its core, a vertex puzzle is a drawing game with a logic component. A clue adds an element of riddle to the puzzle. The team had their game concept down—and a name for the game: Vertex.

The dynamics of the game were defined, but the team still needed to know whether users would actually play it, so they built a web-based prototype with basic features and minimal design to see how users responded to the game. It was linked at the bottom of the news feed on the mobile version of the Times website for two weeks. The team tracked the number of users who played the game, how they interacted with it and whether they returned to play again. (They did.)

Armed with positive user data and the green light to build a full-fledged game, the team had to decide what the final game would look like and how it would be built.

For Andrew Dore, a product designer on the Games team, the weeks after the prototyping phase were dominated by design discovery. Because the game is a blend of geometry and low-poly art, Dore started his design inspiration there and brainstormed ways to create an engaging playing experience. The challenge for a game based on mathematics, however, is to prevent it from feeling like homework.

How The New York Times Games Team Designed and Built Vertex (4)

Games are emotional experiences created, in part, by how they look. Dore knew that simply highlighting the game’s geometry component would create a one-dimensional experience. So he started to explore how a visual narrative could convey the object of the game while elevating the experience of playing it.

Since players connect dots by drawing lines, much like stargazers might do in the night sky, Dore decided to use the visual metaphor of a constellation in the game design. Most people are familiar with the concept of drawing shapes by connecting dots, so Dore thought that leaning into this metaphor would help teach users how to play Vertex. Dore created a moodboard with examples of geometry and constellations, as well as visual references to designs that use simple shapes and color, and started working on designs.

How it feels to play a game is just as important as how it looks, especially in a digital environment. To design the feel of Vertex, Dore created a number of simple animations and prototypes.

While the dots and lines in the game are simple, it took some experimentation to decide how they should react to user actions. Dore considered whether the dots should be firmly set as if they were pins in a pinboard; or whether they should slide around as if they were on ice; or if they should float as if suspended in water. For the action of line drawing, he tested interactions that emulated wire being pulled from a tightly wound spool, and if released, the line would retract automatically.

How The New York Times Games Team Designed and Built Vertex (5)

To keep track of all of the user interactions, the team created a large diagram with every user input and possible animation. This is where the process shifted from exploring visual treatments to building out the game.

Building an interactive game can be complicated. This is especially true with Vertex, as it has numerous moving parts and points of user interaction. The game is also built for the web, which means it needs to work on a variety of screen sizes, from desktop to mobile. The front-end engineering team, made up of Ashley Riccardi and Carron White (with some help from Greg Skiano), decided to build the game using HTML Canvas because of its drawing capabilities.

The beginning of the development phase raised a user experience issue: on small devices, some dots appeared so close together that users couldn’t access them. The engineering team realized that Vertex needed pinch and zoom capabilities. Since they were using HTML Canvas to build the game, the team tried the built-in Canvas functions for transforming and translating the interface. This worked to a point, but didn’t provide the control they wanted users to have when navigating the interface and it negatively affected other features in the game.

The team opted to build their own zoom and pan functions. When users zoom in the game, the functions calculate how large each shape on the screen should be and they redraw the shape; the same thing happens when a user pans. This functionality became the technical foundation for the rest of the game.

Just as Dore considered how the game feels in his designs, the engineers factored “game-feel” into their development process. With so many points, lines and triangles on the page, performance was being negatively impacted and it didn’t feel good.

Initially, they drew all of the shapes on a single canvas element. This meant that anytime a user drew a line from one point to another, every single shape (which could amount to hundreds on certain puzzles) had to be redrawn. And since this would happen anytime a user’s cursor moved while drawing, this could mean redrawing hundreds of shapes, possibly hundreds of times over the span of a few seconds. The game felt laggy.

To fix this issue, the engineers separated elements onto different canvases and layered them on top of one another. The triangles are on one canvas, completed lines on another and the points on a third. These three layers are topped by a blank canvas that renders the line that is actively being drawn. This protects the other elements while the user is drawing the line. Once a shape has been successfully created, the line and triangle are added to their respective canvases. No clearing or redrawing required.

In the end, this amounts to a game that doesn’t weigh down a browser and feels good to play.

How The New York Times Games Team Designed and Built Vertex (6)

Since launching Vertex, the team has learned a few things: namely, that building a game as interactive as this one was really hard. But as they rose to the challenge, they created a strong technical foundation that will allow them to experiment with other visual game ideas in the future.

They also have some post-launch improvements queued up: they intend to improve the touch experience on mobile and implement new design features such as UI color themes that enhance the solving experience and additional animations.

Check out Vertex here.

How The New York Times Games Team Designed and Built Vertex (2024)

FAQs

How The New York Times Games Team Designed and Built Vertex? ›

To design the feel of Vertex, Dore created a number of simple animations and prototypes. While the dots and lines in the game are simple, it took some experimentation to decide how they should react to user actions.

How does vertex work NY times? ›

Vertex is a puzzle logic game, where players are challenged to connect vertices in order to formulate triangles and create an image. You can choose to skip the tutorial. However, the starter pack cannot be skipped.

What is the point of the vertex game? ›

Vertex is a simple connect-the-dots game where the player tries to create triangles eventually resulting in an image.

How to play The New York Times Vertex game? ›

Draw lines between points to create triangles.
  1. Connect vertices to create triangles and assemble an image.
  2. The number on a vertex shows its remaining connections.
  3. Triangles will fill in if they are correct.
  4. Double tap a vertex to clear its connections.

Who creates New York Times puzzles? ›

The puzzle is created by various freelance constructors and has been edited by Will Shortz since 1993. The crosswords are designed to increase in difficulty throughout the week, with the easiest on Monday and the most difficult on Saturday.

How does the vertex work? ›

The vertex form of a quadratic equation is used to easily identify the vertex of the parabola. The general vertex form is defined as y = a ( x − h ) 2 + k , where h is the x-coordinate of the vertex and k is the y-coordinate. What is the vertex of the given quadratic?

Why does the nyt games app not have vertex? ›

As a result, we've decided to stop publishing Vertex, a visual logic game akin to painting by numbers, on Aug.

What is a vertex in game design? ›

A vertex (plural vertices) in computer graphics is a data structure that describes certain attributes, like the position of a point in 2D or 3D space, or multiple points on a surface.

How many puzzles does Vertex have? ›

Beginners can choose whether or not to play a tutorial straight away that takes them over the premise of the game. After this has been completed or skipped, non-subscribing players will be able to play 8 different starter puzzles but each daily puzzle is only accessible to NYT subscribers.

What is the highest combo in nyt tiles? ›

This is achieved by multiplying the number of layers in the tile set by the number of tiles. For most tile sets, this is 90, or 3 times 30. Since you're matching two tiles with each move, the highest possible combo on a three-layer set would be 45.

How does the New York Times tiles game work? ›

How to Play
  1. Each tile has multiple visual elements. ...
  2. Find combos: same-colored shapes or backgrounds shared by two tiles.
  3. Tap tiles to remove the matches you find. ...
  4. To create a long combo, match the second tile you tap to a new one.
  5. Continue matching until the board is cleared.

How to win vertex? ›

One of the best ways to begin a Vertex game is to start working from the edges of the puzzle, drawing lines inward and making a few connections early. Minimizing the total number of pairings in a picture right away will give you more chances to start building the foundation of the final image.

What comes with nyt games? ›

New York Times Games Subscription
  • The Crossword - Access to the Daily Crossword puzzles the evening before their release in print.
  • The Mini Crossword.
  • Wordle.
  • Spelling Bee.
  • Connections.
  • Strands.
  • Letter Boxed.
  • Tiles.

Who makes NY Times games? ›

The New York Times Company

Who designed the nyt building? ›

Architecture. The New York Times Building was designed by Renzo Piano and Fox & Fowle and was developed by the New York Times Company, Forest City Ratner, and ING Real Estate.

How much do you get paid for a NY Times crossword puzzle? ›

Payment
PuzzlesSizePublished 1 – 2
Monday – Saturday15 x 15$500
Sunday21 x 21$1,500
Jul 19, 2024

How does vertex cover work? ›

A vertex cover of a graph \(G\) is a set of vertices, \(V_c\), such that every edge in \(G\) has at least one of vertex in \(V_c\) as an endpoint. This means that every vertex in the graph is touching at least one edge.

How do vertex groups work? ›

Vertex Groups are used to associate parts of the Mesh to Bones of the Armature, where you can specify an influence weight in the range [0.0 ... 1.0] for each vertex in the Vertex Group. Many modifiers contain the ability to control the modifier influence on each vertex separately.

How is the vertex calculated? ›

Get the equation in the form y = ax2 + bx + c. Calculate -b / 2a. This is the x-coordinate of the vertex. To find the y-coordinate of the vertex, simply plug the value of -b / 2a into the equation for x and solve for y.

How do vertex normals work? ›

Vertex normals (sometimes called pseudo-normals) are values stored at each vertex that are most commonly used by a renderer to determine the reflection of lighting or shading models, such as phong shading. For example, the normal of a surface is used to calculate which direction light reflects off this surface.

Top Articles
What Goes Well With Leeks (25 Best Things to Eat)
A Guide to Leeks (including baby leeks, ramps, and Chinese leeks)
Otis Department Of Corrections
15 Types of Pancake Recipes from Across the Globe | EUROSPAR NI
Mikayla Campinos Videos: A Deep Dive Into The Rising Star
Hardly Antonyms
Which Is A Popular Southern Hemisphere Destination Microsoft Rewards
Chastity Brainwash
2021 Lexus IS for sale - Richardson, TX - craigslist
Mycarolinas Login
Hssn Broadcasts
Gfs Rivergate
Washington, D.C. - Capital, Founding, Monumental
General Info for Parents
3472542504
O'reilly's Auto Parts Closest To My Location
Five Day National Weather Forecast
Tamilrockers Movies 2023 Download
Spoilers: Impact 1000 Taping Results For 9/14/2023 - PWMania - Wrestling News
Where to Find Scavs in Customs in Escape from Tarkov
Craigslist Missoula Atv
Bing Chilling Words Romanized
At&T Outage Today 2022 Map
Sandals Travel Agent Login
Nk 1399
Section 408 Allegiant Stadium
Evil Dead Rise Ending Explained
Weather October 15
Yayo - RimWorld Wiki
Turns As A Jetliner Crossword Clue
Solo Player Level 2K23
Sam's Club Gas Price Hilliard
What does wym mean?
Att U Verse Outage Map
Max 80 Orl
Ket2 Schedule
Obsidian Guard's Skullsplitter
Evil Dead Rise (2023) | Film, Trailer, Kritik
Nancy Pazelt Obituary
Bernie Platt, former Cherry Hill mayor and funeral home magnate, has died at 90
Puretalkusa.com/Amac
How to Get a Better Signal on Your iPhone or Android Smartphone
Weather In Allentown-Bethlehem-Easton Metropolitan Area 10 Days
Wordle Feb 27 Mashable
Pike County Buy Sale And Trade
About Us
Crystal Glassware Ebay
Craigslist Mendocino
The Cutest Photos of Enrique Iglesias and Anna Kournikova with Their Three Kids
The Jazz Scene: Queen Clarinet: Interview with Doreen Ketchens – International Clarinet Association
Runelite Ground Markers
Mast Greenhouse Windsor Mo
Latest Posts
Article information

Author: Clemencia Bogisich Ret

Last Updated:

Views: 6116

Rating: 5 / 5 (60 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Clemencia Bogisich Ret

Birthday: 2001-07-17

Address: Suite 794 53887 Geri Spring, West Cristentown, KY 54855

Phone: +5934435460663

Job: Central Hospitality Director

Hobby: Yoga, Electronics, Rafting, Lockpicking, Inline skating, Puzzles, scrapbook

Introduction: My name is Clemencia Bogisich Ret, I am a super, outstanding, graceful, friendly, vast, comfortable, agreeable person who loves writing and wants to share my knowledge and understanding with you.