<% ' container targetContainer = true targetContainerHeadline = "Colour affects people's behaviour differently in virtual reality" targetContainerUrl = "/news-archive/2022/colour-affects-people-s-behaviour.htm" %> <% splitKeywords = Split("Alumni and Development;Research;Scottish Borders;External;Article;Textiles and Design;2022", ";") splitCategoryKeywords = Split("Audience:Alumni and Development;Audience:Research;Campus:Scottish Borders;News/events audience:External;PageType:Article;School:Textiles and Design;System:2022", ";") bannedList = "Noticeboard*News*Article*External*2023*2022*2021*2020*2019" whitelistKeywords = Array("Alumni and Development", "Athena Swan", "Business and Industry", "Conferences", "Graduate Apprenticeships", "Graduation", "Open Days", "Public Engagement", "Research") whitelistTheme = Array("Brewing and Distilling", "Design thinking", "Earth and Marine", "Health and care", "Lyell Centre", "Mathematical and Computer Sciences", "National Robotarium", "Panmure House", "Social Inclusion", "Sustainability and Net Zero") metaKeywords = "" for each x in splitCategoryKeywords tempCatKey = Split(x, ":") tempCategory = tempCatKey(0) tempKeyword = tempCatKey(1) tempSchool = "" tempResearch = "" tempSubject = "" ' campus if tempCategory = "Campus" then funnelbackGscope = funnelbackGscope & "|" & "campus-" & LCase(Replace(tempKeyword, " ", "")) ' brand elseif tempCategory = "School" then if tempKeyword = "Edinburgh Business School" then tempSchool = "ebs" elseif tempKeyword = "Textiles and Design" then tempSchool = "tex" end if if tempSchool <> "" then funnelbackGscope = funnelbackGscope & "|" & "brand-" & tempSchool end if ' research elseif tempCategory = "Research Institute" then funnelbackResearch = funnelbackResearch & "|" & tempKeyword ' subject elseif tempCategory = "Subject" or tempCategory = "Subject area" then funnelbackSubject = funnelbackSubject & "|" & tempKeyword ' generic 'elseif instr(bannedList, tempKeyword) = 0 then else for each z in whitelistKeywords if tempKeyword = z or instr(tempKeyword, z) > 0 or instr(z, tempKeyword) > 0 then dataKeywords = dataKeywords & "|" & z %><% exit for end if next for each z in whitelistTheme if tempKeyword = z or instr(tempKeyword, z) > 0 or instr(z, tempKeyword) > 0 then dataKeywords = dataKeywords & "|" & z %><% exit for end if next end if next if funnelbackGscope = "" then funnelbackGscope = "campus-uk" else funnelbackGscope = Replace(funnelbackGscope, "Edinburgh Business School", "ebs") funnelbackGscope = Replace(funnelbackGscope, "Textiles and Design", "tex") end if funnelbackGscope = funnelbackGscope & "|featured-article" funnelbackKeywords = dataKeywords useCreated = "2022-03-18" useCreatedPretty = "18 Mar 2022" if "" <> "" then useCreated = "" useCreatedPretty = Right("", 2) & " " & MonthName(CInt(Mid("", 6, 2)), true) & " " & Left("", 4) end if %>
" data-keywords="<%=funnelbackKeywords%>" data-research="<%=funnelbackResearch%>" data-subject="<%=funnelbackSubject%>" data-year="<%=Left("2022-03-18", 4)%>" data-imgAlt="vr headset" data-imgSrc="https://www.hw.ac.uk/news-archive/2022/img/vr.jpg" data-imgCaption="">

Published:

Share:

<% newsWidth = 900 newsRatio = CInt("999") / CInt("790") newsHeight = CInt(newsWidth / newsRatio) ' /news-archive/2022/img/vr.jpg %> vr headset

Colour affects people differently in virtual reality than in the real world, according to a new study. 

An expert from Heriot-Watt University says the differences could be used by virtual reality designers to make the experience more immersive. 

Guobin Xia, assistant professor of digital design and innovation at Heriot-Watt's School of Textile and Design, set up experiments with 70 people. 

They were asked to carry out cognitive tasks, which measure things like memory, reasoning and decision making, in real life and in a virtual reality setting. 

Xia measured how they performed the tasks when faced with different coloured backgrounds. 

Xia said: “We know colour affects people's emotions and behaviour - blues are calming, yellows are cheering, for example. 

“We established that some colours affect people very differently in virtual reality settings.  

“In the real world, red makes people most impulsive. But in virtual reality, orange gives the highest state of impulsivity. 

“Green has the most positive effects on people's logical and lateral thinking abilities, and their attention to detail in the real world and in VR.” 

The pandemic led to a global boom in VR, says Xia, with retailers, workplaces, educators and travel companies all using more VR experiences for their users. 

“Better designed VR experiences will mean better customer and user engagement. 

“Colour can trigger positive engagement and improve cognitive performance - so designers could use this information to trigger buying behaviours or deep concentration. 

“This proves that an immersive colour experience is a critical tool that needs to be fully considered in the creation of VR applications.” 

The research was published in the journal Brain Sciences

<% if "Key info - Contact" = "Key info" then %> <% ADname = "" if ADname <> "" then %> <% if ADname <> "" then Set oCon = Server.CreateObject("ADODB.Connection") sUser = "cn=opentextuser,cn=Users,dc=hw,dc=ac,dc=uk" sPassword = "Fr56+Mx" oCon.Provider = "ADsDSOObject" oCon.Open "ADProvider", sUser, sPassword Set oCmd = Server.CreateObject("ADODB.Command") Set oCmd.ActiveConnection = oCon 'sDomainADsPath = "LDAP://dc06.hw.ac.uk:389/DC=hw,DC=ac,DC=uk" sDomainADsPath = "LDAP://LDAP-ED.hw.ac.uk:389/DC=hw,DC=ac,DC=uk" sProperties = "givenName,SN,displayName,title,mail,telephoneNumber,facsimileTelephoneNumber,department,physicalDeliveryOfficeName,hwCampus" oCmd.CommandText = "<" & sDomainADsPath & ">;(&(objectCategory=person)(objectClass=user)(sAMAccountName=" & ADname & "));" & sProperties & ";subtree" oCmd.Properties("Page Size") = 100 Set rs = oCmd.Execute While Not rs.EOF fullName = rs("givenName") & " " & rs("SN") displayName = rs("displayName") email = rs("mail") phone = rs("telephoneNumber") jobTitle = rs("title") department = rs("department") roomNumber = rs("physicalDeliveryOfficeName") campusName = rs("hwCampus") rs.MoveNext Wend rs.Close oCon.Close Set rs = Nothing Set oCon = Nothing end if %> <% else fullName = "Sarah McDaid" email = "sarah@mcdaidpr.co.uk" phone = "" jobTitle = "" end if ' international phone format if phone <> "" then if Left(phone,2) = "01" then phone = Replace(phone,"01","+44 1") end if end if ' lower-case email if email <> "" then email = LCase(email) end if %> <% if fullName <> "" then if template = "course" then %> <% else %>

<%=fullName%>

<% if jobTitle <> "" and jobTitle <> name then %>
Job title
<%=jobTitle%>
<% end if if phone <> "" then %>
Phone
<%=phone%>
<% end if if email <> "" then %>
Email
<%=email%>
<% end if %>
<% end if end if %> <% else %> <% end if %>
<% ' Force aside tag on main page customFeatured = "yes" %> <% function getRobots() getRobots = "index" end function function getCanonical() getCanonical = "https://www.hw.ac.uk/news-archive/2022/colour-affects-people-s-behaviour.htm" end function function getPreload() getPreload = "" getPreload = "" getPreload = "" end function function getMeta() tempMeta = tempMeta & "" tempMeta = tempMeta & "" tempMeta = tempMeta & "" tempMeta = tempMeta & "" tempMeta = tempMeta & "" tempMeta = tempMeta & "" tempMeta = tempMeta & "" tempMeta = tempMeta & "" tempMeta = tempMeta & "" if "" = "" then tempMeta = tempMeta & "" if "2022-03-18" <> "2024-06-26" then tempMeta = tempMeta & "" end if else tempMeta = tempMeta & "" end if tempMeta = tempMeta & tempKeywords getMeta = tempMeta end function %>